1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Make abort more explicit

llvm-svn: 6151
This commit is contained in:
Chris Lattner 2003-05-12 21:16:26 +00:00
parent f1a6a1fde1
commit 19ca50fe2a

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!");
}