mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
rename llvm::llvm_report_error -> llvm::report_fatal_error
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100709 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1344,7 +1344,7 @@ void CWriter::writeInstComputationInline(Instruction &I) {
|
||||
Ty!=Type::getInt16Ty(I.getContext()) &&
|
||||
Ty!=Type::getInt32Ty(I.getContext()) &&
|
||||
Ty!=Type::getInt64Ty(I.getContext()))) {
|
||||
llvm_report_error("The C backend does not currently support integer "
|
||||
report_fatal_error("The C backend does not currently support integer "
|
||||
"types of widths other than 1, 8, 16, 32, 64.\n"
|
||||
"This is being tracked as PR 4158.");
|
||||
}
|
||||
@@ -2993,7 +2993,7 @@ bool CWriter::visitBuiltinCall(CallInst &I, Intrinsic::ID ID,
|
||||
Msg << "The C backend does not currently support zero "
|
||||
<< "argument varargs functions, such as '"
|
||||
<< I.getParent()->getParent()->getName() << "'!";
|
||||
llvm_report_error(Msg.str());
|
||||
report_fatal_error(Msg.str());
|
||||
}
|
||||
writeOperand(--I.getParent()->getParent()->arg_end());
|
||||
Out << ')';
|
||||
|
Reference in New Issue
Block a user