diff options
author | Adrian Prantl <aprantl@apple.com> | 2013-05-22 18:02:19 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2013-05-22 18:02:19 +0000 |
commit | 0d1e5592a6148100cbe81f3fcd2a69be313e98ac (patch) | |
tree | 1439ac7ac59f08df3eabb44d54abfcae74dc42b0 /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | d8da989e7819f47448c377c8d3931e1ebc9930ec (diff) | |
download | bcm5719-llvm-0d1e5592a6148100cbe81f3fcd2a69be313e98ac.tar.gz bcm5719-llvm-0d1e5592a6148100cbe81f3fcd2a69be313e98ac.zip |
Unify formatting of debug output.
llvm-svn: 182495
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 288499ac6f3..eb80c648ee6 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -648,7 +648,7 @@ bool FastISel::SelectCall(const User *I) { else // We can't yet handle anything else here because it would require // generating code, thus altering codegen because of debug info. - DEBUG(dbgs() << "Dropping debug info for " << DI); + DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); return true; } case Intrinsic::dbg_value: { @@ -682,7 +682,7 @@ bool FastISel::SelectCall(const User *I) { } else { // We can't yet handle anything else here because it would require // generating code, thus altering codegen because of debug info. - DEBUG(dbgs() << "Dropping debug info for " << DI); + DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); } return true; } |