From ff1504da6fa9977a20e2e3ba11a157cf9acf3bad Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 11 Nov 2019 20:35:58 -0800 Subject: [PATCH] [X86] Update stale comment. NFC --- llvm/lib/Target/X86/X86ISelLowering.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index f0e5a64..87ff5f9 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -237,7 +237,7 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM, setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom); } - // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have + // Promote i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have // this operation. setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote); @@ -253,7 +253,7 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM, } } - // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have + // Promote i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have // this operation. setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote); -- 2.7.4