summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit060f5d2c4c9399af3942529c5455da2950178f91 (patch)
treefe17f1a166e3ef4dcc2e0159ac1f2e13360fcfb2 /llvm/utils/TableGen/SubtargetEmitter.cpp
parent59b0ee8a5690955e2db6cfdc3c2267317b578561 (diff)
downloadbcm5719-llvm-060f5d2c4c9399af3942529c5455da2950178f91.tar.gz
bcm5719-llvm-060f5d2c4c9399af3942529c5455da2950178f91.zip
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. llvm-svn: 158350
Diffstat (limited to 'llvm/utils/TableGen/SubtargetEmitter.cpp')
-rw-r--r--llvm/utils/TableGen/SubtargetEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/SubtargetEmitter.cpp b/llvm/utils/TableGen/SubtargetEmitter.cpp
index c58fc6b8fd0..1b871a8b66b 100644
--- a/llvm/utils/TableGen/SubtargetEmitter.cpp
+++ b/llvm/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";
OpenPOWER on IntegriCloud