summaryrefslogtreecommitdiff
path: root/lib/Bitcode
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-06 03:50:29 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-06 03:50:29 +0000
commitca7680b9987f329ecd9a5022f61b7b88272f8879 (patch)
tree4d959e42737bb359c421e74166266e84d558ba9a /lib/Bitcode
parent56a267380cc956b581b6c8b695b5a033ccb29970 (diff)
downloadllvm-ca7680b9987f329ecd9a5022f61b7b88272f8879.tar.gz
llvm-ca7680b9987f329ecd9a5022f61b7b88272f8879.tar.bz2
llvm-ca7680b9987f329ecd9a5022f61b7b88272f8879.tar.xz
[Layering] Move GVMaterializer.h into the IR library where its
implementation already lived. After this commit, the only IR-library headers in include/llvm/* are ones related to the legacy pass infrastructure that I'm planning to leave there until the new one is farther along. The only other headers at the top level are linking and initialization aids that aren't really libraries but just headers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.h b/lib/Bitcode/Reader/BitcodeReader.h
index daa16349b8..1337da1025 100644
--- a/lib/Bitcode/Reader/BitcodeReader.h
+++ b/lib/Bitcode/Reader/BitcodeReader.h
@@ -17,8 +17,8 @@
#include "llvm/ADT/DenseMap.h"
#include "llvm/Bitcode/BitstreamReader.h"
#include "llvm/Bitcode/LLVMBitCodes.h"
-#include "llvm/GVMaterializer.h"
#include "llvm/IR/Attributes.h"
+#include "llvm/IR/GVMaterializer.h"
#include "llvm/IR/OperandTraits.h"
#include "llvm/IR/Type.h"
#include "llvm/IR/ValueHandle.h"