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

llvm-svn: 331611
This commit is contained in:
Craig Topper 2018-05-07 00:47:02 +00:00
parent 07f0a68ba3
commit c882014f43
1 changed files with 1 additions and 1 deletions

View 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);
}