File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ bool RegUsageInfoPropagation::runOnMachineFunction(MachineFunction &MF) {
118
118
continue ;
119
119
LLVM_DEBUG (
120
120
dbgs ()
121
- << " Call Instruction Before Register Usage Info Propagation : \n " );
122
- LLVM_DEBUG ( dbgs () << MI << " \n " );
121
+ << " Call Instruction Before Register Usage Info Propagation : \n "
122
+ << MI << " \n " );
123
123
124
124
auto UpdateRegMask = [&](const Function &F) {
125
125
const ArrayRef<uint32_t > RegMask = PRUI->getRegUsageInfo (F);
@@ -140,8 +140,9 @@ bool RegUsageInfoPropagation::runOnMachineFunction(MachineFunction &MF) {
140
140
}
141
141
142
142
LLVM_DEBUG (
143
- dbgs () << " Call Instruction After Register Usage Info Propagation : "
144
- << MI << ' \n ' );
143
+ dbgs ()
144
+ << " Call Instruction After Register Usage Info Propagation : \n "
145
+ << MI << ' \n ' );
145
146
}
146
147
}
147
148
Original file line number Diff line number Diff line change 6
6
; REQUIRES: asserts
7
7
;
8
8
; DBG: fun1 function optimized for not having CSR
9
- ; DBG: Call Instruction After Register Usage Info Propagation : CallBRASL @fun1{{.*}} $r14d $r15d
9
+ ; DBG: Call Instruction After Register Usage Info Propagation :
10
+ ; DBG-NEXT: CallBRASL @fun1{{.*}} $r14d $r15d
10
11
11
12
declare dso_local fastcc signext i32 @foo (i16* , i32 signext ) unnamed_addr
12
13
You can’t perform that action at this time.
0 commit comments