diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-04-21 19:51:41 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-04-21 19:51:41 +0000 |
commit | 5f1f26e891d979fc9543cbeed3950384357ed548 (patch) | |
tree | fcc3e662dd88ca06869a1cd5ca16bac70b63a474 /llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp | |
parent | 4898cde4e100d65de375ee0bbf19c66061fa4f25 (diff) | |
download | bcm5719-llvm-5f1f26e891d979fc9543cbeed3950384357ed548.tar.gz bcm5719-llvm-5f1f26e891d979fc9543cbeed3950384357ed548.zip |
[Modules] Sink all the DEBUG_TYPE defines for InstCombine out of the
header files and into the cpp files.
These files will require more touches as the header files actually use
DEBUG(). Eventually, I'll have to introduce a matched #define and #undef
of DEBUG_TYPE for the header files, but that comes as step N of many to
clean all of this up.
llvm-svn: 206777
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp index 71fbb6cda65..4f7323c3d26 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp @@ -12,6 +12,7 @@ // //===----------------------------------------------------------------------===// +#define DEBUG_TYPE "instcombine" #include "InstCombine.h" #include "llvm/Analysis/InstructionSimplify.h" #include "llvm/IR/IntrinsicInst.h" |