forked from OSchip/llvm-project
parent
d4e5409f35
commit
3fa7b77ddf
|
@ -1690,7 +1690,9 @@ void ISel::emitCastOperation(MachineBasicBlock *BB,
|
||||||
case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break;
|
case cByte: StoreTy = Type::ShortTy; StoreClass = cShort; break;
|
||||||
case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break;
|
case cShort: StoreTy = Type::IntTy; StoreClass = cInt; break;
|
||||||
case cInt: StoreTy = Type::LongTy; StoreClass = cLong; 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!");
|
default: assert(0 && "Unknown store class!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue