From: Hal Finkel Date: Tue, 12 Jun 2012 04:21:36 +0000 (+0000) Subject: Add two newlines in ParseSubtargetFeatures's debug output after the CPU is printed. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3f696e568bae8afa5986e7af48156c2bac041ba7;p=oota-llvm.git 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 --- diff --git a/utils/TableGen/SubtargetEmitter.cpp b/utils/TableGen/SubtargetEmitter.cpp index c58fc6b8fd0..1b871a8b66b 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";