[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp

Chris Lattner sabre at nondot.org
Tue Feb 13 15:41:55 PST 2007



Changes in directory llvm/lib/CodeGen/SelectionDAG:

TargetLowering.cpp updated: 1.89 -> 1.90
---
Log message:

Fix PR1198: http://llvm.org/PR1198 , by adding initial i128 support.  Patch by Dan Gohman.


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

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


Index: llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp:1.89 llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp:1.90
--- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp:1.89	Thu Feb  8 16:13:59 2007
+++ llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp	Tue Feb 13 17:41:38 2007
@@ -2200,6 +2200,7 @@
       case 16:   return MVT::i16;
       case 32:   return MVT::i32;
       case 64:   return MVT::i64;
+      case 128:  return MVT::i128;
     }
     break;
   case Type::FloatTyID:   return MVT::f32;






More information about the llvm-commits mailing list