Make abort more explicit

llvm-svn: 6151
This commit is contained in:
Chris Lattner 2003-05-12 21:16:26 +00:00
parent d4e5409f35
commit 3fa7b77ddf
1 changed files with 3 additions and 1 deletions

View File

@ -1690,7 +1690,9 @@ void ISel::emitCastOperation(MachineBasicBlock *BB,
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!");
}