mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 03:30:22 +00:00
make this fail even in non-assert builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35025 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
97f9df1cd1
commit
b4ddac9bf7
@ -2883,8 +2883,10 @@ void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
|
||||
// Memory input.
|
||||
|
||||
// Check that the operand isn't a float.
|
||||
if (!MVT::isInteger(InOperandVal.getValueType()))
|
||||
assert(0 && "MATCH FAIL!");
|
||||
if (!MVT::isInteger(InOperandVal.getValueType())) {
|
||||
cerr << "Match failed, can't handle floats yet!\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Extend/truncate to the right pointer type if needed.
|
||||
MVT::ValueType PtrType = TLI.getPointerTy();
|
||||
|
Loading…
Reference in New Issue
Block a user