diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2015-09-10 21:51:19 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2015-09-10 21:51:19 +0000 |
commit | e0b44040aaa48a6f0b84ea18beffc7de33078731 (patch) | |
tree | 12327e113d5ed2d2533bdf89ab80d5a4198a6e59 /llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp | |
parent | 57116cce197b2d2eaa491556f451e5f5bfeb1002 (diff) | |
download | bcm5719-llvm-e0b44040aaa48a6f0b84ea18beffc7de33078731.tar.gz bcm5719-llvm-e0b44040aaa48a6f0b84ea18beffc7de33078731.zip |
AMDGPU: Simplify debug printing
llvm-svn: 247345
Diffstat (limited to 'llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp')
-rw-r--r-- | llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp b/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp index 54012122091..e44eca0df60 100644 --- a/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp +++ b/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp @@ -283,7 +283,7 @@ bool SIShrinkInstructions::runOnMachineFunction(MachineFunction &MF) { } // We can shrink this instruction - DEBUG(dbgs() << "Shrinking "; MI.dump(); dbgs() << '\n';); + DEBUG(dbgs() << "Shrinking " << MI); MachineInstrBuilder Inst32 = BuildMI(MBB, I, MI.getDebugLoc(), TII->get(Op32)); |