[llvm] r331611 - [X86] Fix copy/paste mistake in comment. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Sun May 6 17:47:02 PDT 2018


Author: ctopper
Date: Sun May  6 17:47:02 2018
New Revision: 331611

URL: http://llvm.org/viewvc/llvm-project?rev=331611&view=rev
Log:
[X86] Fix copy/paste mistake in comment. NFC

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=331611&r1=331610&r2=331611&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Sun May  6 17:47:02 2018
@@ -17853,7 +17853,7 @@ SDValue X86TargetLowering::getRecipEstim
     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);
   }




More information about the llvm-commits mailing list