diff options
author | Nicola Zaghen <nicola.zaghen@imgtec.com> | 2018-05-23 15:09:29 +0000 |
---|---|---|
committer | Nicola Zaghen <nicola.zaghen@imgtec.com> | 2018-05-23 15:09:29 +0000 |
commit | 03d0b91f43319d02ec416489118726b8dee9801a (patch) | |
tree | a5c49fbab9b2eb667c9d3921a5163e9ab2b77cf9 /llvm/utils/TableGen/GlobalISelEmitter.cpp | |
parent | 2e171b52eeac53d4ece15816688b8c259cd1fea1 (diff) | |
download | bcm5719-llvm-03d0b91f43319d02ec416489118726b8dee9801a.tar.gz bcm5719-llvm-03d0b91f43319d02ec416489118726b8dee9801a.zip |
Remove DEBUG macro.
Now that the LLVM_DEBUG() macro landed on the various sub-projects
the DEBUG macro can be removed.
Also change the new uses of DEBUG to LLVM_DEBUG.
Differential Revision: https://reviews.llvm.org/D46952
llvm-svn: 333091
Diffstat (limited to 'llvm/utils/TableGen/GlobalISelEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/GlobalISelEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/GlobalISelEmitter.cpp b/llvm/utils/TableGen/GlobalISelEmitter.cpp index cf0854b608e..9367b5da838 100644 --- a/llvm/utils/TableGen/GlobalISelEmitter.cpp +++ b/llvm/utils/TableGen/GlobalISelEmitter.cpp @@ -4063,7 +4063,7 @@ std::vector<Matcher *> GlobalISelEmitter::optimizeRules( } ProcessCurrentGroup(); - DEBUG(dbgs() << "NumGroups: " << NumGroups << "\n"); + LLVM_DEBUG(dbgs() << "NumGroups: " << NumGroups << "\n"); assert(CurrentGroup->empty() && "The last group wasn't properly processed"); return OptRules; } |