mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Change dbgs() back to errs() for assert messages as Chris requested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92081 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e48e53d98
commit
4027f3d745
@ -806,7 +806,7 @@ unsigned Andersens::getNodeForConstantPointer(Constant *C) {
|
||||
case Instruction::BitCast:
|
||||
return getNodeForConstantPointer(CE->getOperand(0));
|
||||
default:
|
||||
dbgs() << "Constant Expr not yet handled: " << *CE << "\n";
|
||||
errs() << "Constant Expr not yet handled: " << *CE << "\n";
|
||||
llvm_unreachable(0);
|
||||
}
|
||||
} else {
|
||||
@ -833,7 +833,7 @@ unsigned Andersens::getNodeForConstantPointerTarget(Constant *C) {
|
||||
case Instruction::BitCast:
|
||||
return getNodeForConstantPointerTarget(CE->getOperand(0));
|
||||
default:
|
||||
dbgs() << "Constant Expr not yet handled: " << *CE << "\n";
|
||||
errs() << "Constant Expr not yet handled: " << *CE << "\n";
|
||||
llvm_unreachable(0);
|
||||
}
|
||||
} else {
|
||||
@ -1132,7 +1132,7 @@ void Andersens::visitInstruction(Instruction &I) {
|
||||
return;
|
||||
default:
|
||||
// Is this something we aren't handling yet?
|
||||
dbgs() << "Unknown instruction: " << I;
|
||||
errs() << "Unknown instruction: " << I;
|
||||
llvm_unreachable(0);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user