summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Ole Salscheider <niels_ole@salscheider-online.de>2013-02-26 12:51:18 +0100
committerTom Stellard <thomas.stellard@amd.com>2013-03-08 16:49:56 +0000
commitd6dfea77064a89dc38f68dbe76f8460526ac4d5c (patch)
tree3ac40e8a056e87ed8ad7b8738576606100deb7b4
parent5a138e1933b9a22d567f79cc6699f633158f297a (diff)
Fix build with LLVM 3.3
-rw-r--r--utils/prepare-builtins.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/prepare-builtins.cpp b/utils/prepare-builtins.cpp
index ae7731b..be1624b 100644
--- a/utils/prepare-builtins.cpp
+++ b/utils/prepare-builtins.cpp
@@ -1,9 +1,9 @@
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Bitcode/ReaderWriter.h"
-#include "llvm/Function.h"
-#include "llvm/GlobalVariable.h"
-#include "llvm/LLVMContext.h"
-#include "llvm/Module.h"
+#include "llvm/IR/Function.h"
+#include "llvm/IR/GlobalVariable.h"
+#include "llvm/IR/LLVMContext.h"
+#include "llvm/IR/Module.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/MemoryBuffer.h"