diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 12:46:06 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 12:46:06 +0000 |
commit | 4b6845c7e7629330b11806ed569cdc8a24b9233f (patch) | |
tree | 631b582c539778fa2f6ae7d56526e494d48613bb /llvm/lib/IR/Globals.cpp | |
parent | e7b3e4c2ae3740229fe85a41304f8192a850181f (diff) | |
download | bcm5719-llvm-4b6845c7e7629330b11806ed569cdc8a24b9233f.tar.gz bcm5719-llvm-4b6845c7e7629330b11806ed569cdc8a24b9233f.zip |
[Modules] Move the LeakDetector header into the IR library where the
source file had already been moved. Also move the unittest into the IR
unittest library.
This may seem an odd thing to put in the IR library but we only really
use this with instructions and it needs the LLVM context to work, so it
is intrinsically tied to the IR library.
llvm-svn: 202842
Diffstat (limited to 'llvm/lib/IR/Globals.cpp')
-rw-r--r-- | llvm/lib/IR/Globals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Globals.cpp b/llvm/lib/IR/Globals.cpp index ee882c3eace..11152d5d6c2 100644 --- a/llvm/lib/IR/Globals.cpp +++ b/llvm/lib/IR/Globals.cpp @@ -18,9 +18,9 @@ #include "llvm/IR/DerivedTypes.h" #include "llvm/IR/GlobalAlias.h" #include "llvm/IR/GlobalVariable.h" +#include "llvm/IR/LeakDetector.h" #include "llvm/IR/Module.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/LeakDetector.h" using namespace llvm; //===----------------------------------------------------------------------===// |