mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 23:32:58 +00:00
Fix the asserts in lib/Target/X86/X86ELFWriterInfo.cpp and
lib/ExecutionEngine/MCJIT/MCJIT.cpp from: assert("error"); to: assert(0 && "error"); git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139456 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2db8628085
commit
81cbb0ad60
@ -216,6 +216,6 @@ GenericValue MCJIT::runFunction(Function *F,
|
||||
}
|
||||
}
|
||||
|
||||
assert("Full-featured argument passing not supported yet!");
|
||||
assert(0 && "Full-featured argument passing not supported yet!");
|
||||
return GenericValue();
|
||||
}
|
||||
|
@ -147,7 +147,7 @@ long int X86ELFWriterInfo::computeRelocation(unsigned SymOffset,
|
||||
if (RelTy == ELF::R_X86_64_PC32 || RelTy == ELF::R_386_PC32)
|
||||
return SymOffset - (RelOffset + 4);
|
||||
else
|
||||
assert("computeRelocation unknown for this relocation type");
|
||||
assert(0 && "computeRelocation unknown for this relocation type");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user