[llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelLowering.cpp
    Evan Cheng 
    evan.cheng at apple.com
       
    Mon Oct 30 00:02:59 PST 2006
    
    
  
Changes in directory llvm/lib/Target/IA64:
IA64ISelLowering.cpp updated: 1.47 -> 1.48
---
Log message:
All targets expand BR_JT for now.
---
Diffs of the changes:  (+2 -1)
 IA64ISelLowering.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/lib/Target/IA64/IA64ISelLowering.cpp
diff -u llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.47 llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.48
--- llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.47	Fri Oct 13 16:14:26 2006
+++ llvm/lib/Target/IA64/IA64ISelLowering.cpp	Mon Oct 30 02:02:39 2006
@@ -44,7 +44,8 @@
       setLoadXAction(ISD::SEXTLOAD         , MVT::i16  , Expand);
       setLoadXAction(ISD::SEXTLOAD         , MVT::i32  , Expand);
 
-      setOperationAction(ISD::BRIND            , MVT::i64,   Expand);
+      setOperationAction(ISD::BRIND            , MVT::Other, Expand);
+      setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
       setOperationAction(ISD::BR_CC            , MVT::Other, Expand);
       setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
 
    
    
More information about the llvm-commits
mailing list