diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-12-13 01:03:49 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-12-13 01:03:49 +0000 |
commit | 6a97ed34ed732fe60092bb63a8f811581aa1a349 (patch) | |
tree | f3042a2d20d5eabbbc774c1db6933a9441eb55d5 /utils/TableGen/ARMDecoderEmitter.cpp | |
parent | 67db883487fca3472fdde51e931657e22d4d0495 (diff) |
Merge DEBUG statements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/ARMDecoderEmitter.cpp')
-rw-r--r-- | utils/TableGen/ARMDecoderEmitter.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp index 76fa425f45..c4e78f358e 100644 --- a/utils/TableGen/ARMDecoderEmitter.cpp +++ b/utils/TableGen/ARMDecoderEmitter.cpp @@ -1726,15 +1726,15 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI, return false; } - // Dumps the instruction encoding format. - switch (TargetName) { - case TARGET_ARM: - case TARGET_THUMB: - DEBUG(errs() << Name << " " << stringForARMFormat((ARMFormat)Form)); - break; - } - DEBUG({ + // Dumps the instruction encoding format. + switch (TargetName) { + case TARGET_ARM: + case TARGET_THUMB: + errs() << Name << " " << stringForARMFormat((ARMFormat)Form); + break; + } + errs() << " "; // Dumps the instruction encoding bits. |