summaryrefslogtreecommitdiff
path: root/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-04-21 19:51:41 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-04-21 19:51:41 +0000
commitb2c8ff0666b0bbf2f04551648fea1a76e1852a12 (patch)
tree8493d59a7efbe777265799b7650d2397f7990eaa /lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
parent361c71e652227873528bed09c085197c250f0f8d (diff)
downloadllvm-b2c8ff0666b0bbf2f04551648fea1a76e1852a12.tar.gz
llvm-b2c8ff0666b0bbf2f04551648fea1a76e1852a12.tar.bz2
llvm-b2c8ff0666b0bbf2f04551648fea1a76e1852a12.tar.xz
[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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206777 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombineMulDivRem.cpp')
-rw-r--r--lib/Transforms/InstCombine/InstCombineMulDivRem.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp b/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
index 71fbb6cda6..4f7323c3d2 100644
--- a/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
+++ b/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"