diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp b/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp index f0625800ccc..9c820c2fc59 100644 --- a/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp +++ b/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp @@ -30,7 +30,7 @@ using namespace llvm; template <class T> static const char *BadConditionCode(T cc) { - DEBUG(dbgs() << "Unknown condition code passed: " << cc << "\n"); + LLVM_DEBUG(dbgs() << "Unknown condition code passed: " << cc << "\n"); return "{unknown-cc}"; } |