summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-06-26 18:20:32 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-06-26 18:20:32 +0000
commit58ccf6f97d28b81871dc8a85550970b8a9f451d0 (patch)
tree1f510f5b792de1a260bc5bad8d13762620e18f57
parentb77eb2d4a7c4d59793ec33752cb1d5ca573b793d (diff)
Fix build with LLVM 3.3
Patch by: Niels Ole Salscheider git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@184989 91177308-0d34-0410-b5e6-96231b3b80d8
-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"