mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
MachineVerifier: Add missing linebreak
MachineInstr::print() with SkipOppers==true does not produce a linebreak, so we have to do that in MachineVerifier::report(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252551 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e5351a1797
commit
7b4272f659
@ -425,6 +425,7 @@ void MachineVerifier::report(const char *msg, const MachineInstr *MI) {
|
||||
if (Indexes && Indexes->hasIndex(MI))
|
||||
errs() << Indexes->getInstructionIndex(MI) << '\t';
|
||||
MI->print(errs(), /*SkipOpers=*/true);
|
||||
errs() << '\n';
|
||||
}
|
||||
|
||||
void MachineVerifier::report(const char *msg,
|
||||
|
@ -15,7 +15,8 @@ body: |
|
||||
bb.0.entry:
|
||||
liveins: %edi
|
||||
; CHECK: *** Bad machine code: Too few operands ***
|
||||
; CHECK: instruction: COPY2 operands expected, but 0 given.
|
||||
; CHECK: instruction: COPY
|
||||
; CHECK: 2 operands expected, but 0 given.
|
||||
COPY
|
||||
RETQ
|
||||
...
|
||||
|
Loading…
x
Reference in New Issue
Block a user