diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-01-09 23:05:21 +0000 |
---|---|---|
committer | Heejin Ahn <aheejin@gmail.com> | 2019-01-09 23:05:21 +0000 |
commit | 569f0909222e9156c2b1c91e4b135efe2c87f9e3 (patch) | |
tree | 31612a723445d12b8ac8456722f0d05b17908da5 /llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp | |
parent | 2f4df4c986505cd85645e7b54a9f688e72eb2238 (diff) | |
download | bcm5719-llvm-569f0909222e9156c2b1c91e4b135efe2c87f9e3.tar.gz bcm5719-llvm-569f0909222e9156c2b1c91e4b135efe2c87f9e3.zip |
[WebAssembly] Print a debug message at the start of each pass
Summary:
Looks like many passes print its pass description as a debug message at
the start of each pass, so added that to (mostly newly added) other
passes as well.
Reviewers: dschuff
Subscribers: jgravelle-google, sbc100, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D56142
llvm-svn: 350771
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp index 326e838052d..aaa6d286598 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp @@ -98,7 +98,7 @@ static bool IsPseudoCallIndirect(const MachineInstr &MI) { bool WebAssemblyCallIndirectFixup::runOnMachineFunction(MachineFunction &MF) { LLVM_DEBUG(dbgs() << "********** Fixing up CALL_INDIRECTs **********\n" - << MF.getName() << '\n'); + << "********** Function: " << MF.getName() << '\n'); bool Changed = false; const WebAssemblyInstrInfo *TII = |