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/Value.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/Value.cpp')
-rw-r--r-- | llvm/lib/IR/Value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Value.cpp b/llvm/lib/IR/Value.cpp index eb12bc5a8e3..bdb544bef42 100644 --- a/llvm/lib/IR/Value.cpp +++ b/llvm/lib/IR/Value.cpp @@ -21,13 +21,13 @@ #include "llvm/IR/GetElementPtrTypeIterator.h" #include "llvm/IR/InstrTypes.h" #include "llvm/IR/Instructions.h" +#include "llvm/IR/LeakDetector.h" #include "llvm/IR/Module.h" #include "llvm/IR/Operator.h" #include "llvm/IR/ValueHandle.h" #include "llvm/IR/ValueSymbolTable.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/LeakDetector.h" #include "llvm/Support/ManagedStatic.h" #include <algorithm> using namespace llvm; |