Make abort more explicit

llvm-svn: 6151
diff --git a/llvm/lib/Target/X86/InstSelectSimple.cpp b/llvm/lib/Target/X86/InstSelectSimple.cpp
index 6b2ba39..205316e 100644
--- a/llvm/lib/Target/X86/InstSelectSimple.cpp
+++ b/llvm/lib/Target/X86/InstSelectSimple.cpp
@@ -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!");
       }