[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelLowering.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Dec 7 09:59:29 PST 2005



Changes in directory llvm/lib/Target/X86:

X86ISelLowering.cpp updated: 1.5 -> 1.6
---
Log message:

X86 doesn't support sextinreg for 8-bit things either.


---
Diffs of the changes:  (+1 -0)

 X86ISelLowering.cpp |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u llvm/lib/Target/X86/X86ISelLowering.cpp:1.5 llvm/lib/Target/X86/X86ISelLowering.cpp:1.6
--- llvm/lib/Target/X86/X86ISelLowering.cpp:1.5	Tue Nov 29 00:16:21 2005
+++ llvm/lib/Target/X86/X86ISelLowering.cpp	Wed Dec  7 11:59:14 2005
@@ -88,6 +88,7 @@
   setOperationAction(ISD::BRTWOWAY_CC      , MVT::Other, Expand);
   setOperationAction(ISD::MEMMOVE          , MVT::Other, Expand);
   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Expand);
+  setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Expand);
   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
   setOperationAction(ISD::SEXTLOAD         , MVT::i1   , Expand);






More information about the llvm-commits mailing list