When running lli --debug --force-interpreter=true the executed instructions are
printed but are missing newlines. This commit adds the missing newlines.
Patch by Andrew Brown.
Differential Revision: https://reviews.llvm.org/D57806
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@355587
91177308-0d34-0410-b5e6-
96231b3b80d8
// 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...
}
}