[X86] Fix copy/paste mistake in comment. NFC
authorCraig Topper <craig.topper@intel.com>
Mon, 7 May 2018 00:47:02 +0000 (00:47 +0000)
committerCraig Topper <craig.topper@intel.com>
Mon, 7 May 2018 00:47:02 +0000 (00:47 +0000)
llvm-svn: 331611

llvm/lib/Target/X86/X86ISelLowering.cpp

index b7bd22f..128faff 100644 (file)
@@ -17853,7 +17853,7 @@ SDValue X86TargetLowering::getRecipEstimate(SDValue Op, SelectionDAG &DAG,
     if (RefinementSteps == ReciprocalEstimate::Unspecified)
       RefinementSteps = 1;
 
-    // There is no FSQRT for 512-bits, but there is RSQRT14.
+    // There is no FSQRT for 512-bits, but there is RCP14.
     unsigned Opcode = VT == MVT::v16f32 ? X86ISD::RCP14 : X86ISD::FRCP;
     return DAG.getNode(Opcode, SDLoc(Op), VT, Op);
   }