summaryrefslogtreecommitdiff
path: root/utils/TableGen/SubtargetEmitter.cpp
diff options
context:
space:
mode:
authorHal Finkel <hfinkel@anl.gov>2012-06-12 04:21:36 +0000
committerHal Finkel <hfinkel@anl.gov>2012-06-12 04:21:36 +0000
commit3f696e568bae8afa5986e7af48156c2bac041ba7 (patch)
treef63ab9cf2e1d6a16e5d5e44294e619198db88086 /utils/TableGen/SubtargetEmitter.cpp
parent4db738ae9862a2d00e2dca5b8fbf9d4dfa706142 (diff)
downloadllvm-3f696e568bae8afa5986e7af48156c2bac041ba7.tar.gz
llvm-3f696e568bae8afa5986e7af48156c2bac041ba7.tar.bz2
llvm-3f696e568bae8afa5986e7af48156c2bac041ba7.tar.xz
Add two newlines in ParseSubtargetFeatures's debug output after the CPU is printed.
There is otherwise not a newline between the CPU name and the start of the next pass's output which makes both difficult to read. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158350 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/SubtargetEmitter.cpp')
-rw-r--r--utils/TableGen/SubtargetEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/SubtargetEmitter.cpp b/utils/TableGen/SubtargetEmitter.cpp
index c58fc6b8fd..1b871a8b66 100644
--- a/utils/TableGen/SubtargetEmitter.cpp
+++ b/utils/TableGen/SubtargetEmitter.cpp
@@ -696,7 +696,7 @@ void SubtargetEmitter::ParseFeaturesFunction(raw_ostream &OS,
OS << Target;
OS << "Subtarget::ParseSubtargetFeatures(StringRef CPU, StringRef FS) {\n"
<< " DEBUG(dbgs() << \"\\nFeatures:\" << FS);\n"
- << " DEBUG(dbgs() << \"\\nCPU:\" << CPU);\n";
+ << " DEBUG(dbgs() << \"\\nCPU:\" << CPU << \"\\n\\n\");\n";
if (Features.empty()) {
OS << "}\n";