[llvm] ff1504d - [X86] Update stale comment. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 12 00:05:38 PST 2019


Author: Craig Topper
Date: 2019-11-11T23:55:12-08:00
New Revision: ff1504da6fa9977a20e2e3ba11a157cf9acf3bad

URL: https://github.com/llvm/llvm-project/commit/ff1504da6fa9977a20e2e3ba11a157cf9acf3bad
DIFF: https://github.com/llvm/llvm-project/commit/ff1504da6fa9977a20e2e3ba11a157cf9acf3bad.diff

LOG: [X86] Update stale comment. NFC

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index f0e5a648bff0..87ff5f95b166 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);
 


        


More information about the llvm-commits mailing list