Merge DEBUG statements.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121660 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2010-12-13 01:03:49 +00:00
parent 67db883487
commit 6a97ed34ed

View File

@ -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.