mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-05 11:57:07 +00:00
AMDGPU: Fix debug printing
The uint8_t was printed as a char which didn't really work. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287817 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
06a2bf816b
commit
ef97727654
@ -562,7 +562,7 @@ bool SIFoldOperands::runOnMachineFunction(MachineFunction &MF) {
|
||||
MRI.clearKillFlags(Fold.OpToFold->getReg());
|
||||
}
|
||||
DEBUG(dbgs() << "Folded source from " << MI << " into OpNo " <<
|
||||
Fold.UseOpNo << " of " << *Fold.UseMI << '\n');
|
||||
static_cast<int>(Fold.UseOpNo) << " of " << *Fold.UseMI << '\n');
|
||||
|
||||
// Folding the immediate may reveal operations that can be constant
|
||||
// folded or replaced with a copy. This can happen for example after
|
||||
|
Loading…
x
Reference in New Issue
Block a user