diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-11-06 01:18:29 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-11-06 01:18:29 +0000 |
commit | 6863fb033a9079e04edc7a568e34098bcf5b9ebe (patch) | |
tree | 89a9365b75c87d063e5d7d8b273009e6ae33468e /lib/ExecutionEngine/JIT | |
parent | 33e868ff439dd127ee284f7c3c1e460cd9073efd (diff) | |
download | external_llvm-6863fb033a9079e04edc7a568e34098bcf5b9ebe.zip external_llvm-6863fb033a9079e04edc7a568e34098bcf5b9ebe.tar.gz external_llvm-6863fb033a9079e04edc7a568e34098bcf5b9ebe.tar.bz2 |
Need a \n.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT')
-rw-r--r-- | lib/ExecutionEngine/JIT/JITEmitter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JITEmitter.cpp b/lib/ExecutionEngine/JIT/JITEmitter.cpp index 0732806..60c9cd0 100644 --- a/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -970,9 +970,10 @@ bool JITEmitter::finishFunction(MachineFunction &F) { DOUT << "0x" << (long)q << ": "; DOUT<< std::setw(2) << std::setfill('0') << (unsigned short)*q << " "; if (i%8==0) - DOUT<<"\n"; + DOUT << '\n'; } DOUT << std::dec; + DOUT<< '\n'; } } #endif |