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/Metadata.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/Metadata.cpp')
-rw-r--r-- | llvm/lib/IR/Metadata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Metadata.cpp b/llvm/lib/IR/Metadata.cpp index d46eec69f58..f8a1776599f 100644 --- a/llvm/lib/IR/Metadata.cpp +++ b/llvm/lib/IR/Metadata.cpp @@ -22,9 +22,9 @@ #include "llvm/IR/ConstantRange.h" #include "llvm/IR/Instruction.h" #include "llvm/IR/LLVMContext.h" +#include "llvm/IR/LeakDetector.h" #include "llvm/IR/Module.h" #include "llvm/IR/ValueHandle.h" -#include "llvm/Support/LeakDetector.h" using namespace llvm; //===----------------------------------------------------------------------===// |