[PATCH] D57806: [Interpreter] Add newline to interpreter debugging output

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 7 02:14:52 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL355587: Add newline to interpreter debugging output (authored by kbeyls, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D57806?vs=185480&id=189669#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57806/new/

https://reviews.llvm.org/D57806

Files:
  llvm/trunk/lib/ExecutionEngine/Interpreter/Execution.cpp


Index: llvm/trunk/lib/ExecutionEngine/Interpreter/Execution.cpp
===================================================================
--- llvm/trunk/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ llvm/trunk/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -2112,7 +2112,7 @@
     // Track the number of dynamic instructions executed.
     ++NumDynamicInsts;
 
-    LLVM_DEBUG(dbgs() << "About to interpret: " << I);
+    LLVM_DEBUG(dbgs() << "About to interpret: " << I << "\n");
     visit(I);   // Dispatch to one of the visit* methods...
   }
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57806.189669.patch
Type: text/x-patch
Size: 550 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190307/70b2e018/attachment.bin>


More information about the llvm-commits mailing list