summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-12-13 01:03:49 +0000
committerBill Wendling <isanbard@gmail.com>2010-12-13 01:03:49 +0000
commit6a97ed34ed732fe60092bb63a8f811581aa1a349 (patch)
treef3042a2d20d5eabbbc774c1db6933a9441eb55d5 /utils
parent67db883487fca3472fdde51e931657e22d4d0495 (diff)
downloadllvm-6a97ed34ed732fe60092bb63a8f811581aa1a349.tar.gz
llvm-6a97ed34ed732fe60092bb63a8f811581aa1a349.tar.bz2
llvm-6a97ed34ed732fe60092bb63a8f811581aa1a349.tar.xz
Merge DEBUG statements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/ARMDecoderEmitter.cpp16
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.