[llvm-commits] CVS: llvm/lib/Target/X86/InstSelectSimple.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon May 12 16:17:01 PDT 2003
Changes in directory llvm/lib/Target/X86:
InstSelectSimple.cpp updated: 1.99 -> 1.100
---
Log message:
Make abort more explicit
---
Diffs of the changes:
Index: llvm/lib/Target/X86/InstSelectSimple.cpp
diff -u llvm/lib/Target/X86/InstSelectSimple.cpp:1.99 llvm/lib/Target/X86/InstSelectSimple.cpp:1.100
--- llvm/lib/Target/X86/InstSelectSimple.cpp:1.99 Mon May 12 15:39:39 2003
+++ llvm/lib/Target/X86/InstSelectSimple.cpp Mon May 12 16:16:26 2003
@@ -1690,7 +1690,9 @@
case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break;
case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break;
case cInt: StoreTy = Type::LongTy; StoreClass = cLong; break;
- case cLong: abort(); // FIXME: unsigned long long -> more complex
+ case cLong:
+ assert(0 &&"FIXME not implemented: cast FP to unsigned long long");
+ abort();
default: assert(0 && "Unknown store class!");
}
More information about the llvm-commits
mailing list