From 90d8a6fb1a71c030f87fff5685b5d6f39ed4ac09 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Fri, 2 Sep 2011 19:25:37 +0000 Subject: Update location of TargetSelect.h and TargetRegistry.h for LLVM 3.0+ git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@139026 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Core/ExternalDispatcher.cpp | 4 ++++ lib/Module/RaiseAsm.cpp | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'lib') diff --git a/lib/Core/ExternalDispatcher.cpp b/lib/Core/ExternalDispatcher.cpp index c876685e..7da0c350 100644 --- a/lib/Core/ExternalDispatcher.cpp +++ b/lib/Core/ExternalDispatcher.cpp @@ -36,7 +36,11 @@ #include "llvm/Support/DynamicLibrary.h" #endif #include "llvm/Support/raw_ostream.h" +#if LLVM_VERSION_CODE < LLVM_VERSION(3, 0) #include "llvm/Target/TargetSelect.h" +#else +#include "llvm/Support/TargetSelect.h" +#endif #include #include #include diff --git a/lib/Module/RaiseAsm.cpp b/lib/Module/RaiseAsm.cpp index 6f6a5c90..60bf28a1 100644 --- a/lib/Module/RaiseAsm.cpp +++ b/lib/Module/RaiseAsm.cpp @@ -18,7 +18,11 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/Support/Host.h" #include "llvm/Target/TargetLowering.h" +#if LLVM_VERSION_CODE < LLVM_VERSION(3, 0) #include "llvm/Target/TargetRegistry.h" +#else +#include "llvm/Support/TargetRegistry.h" +#endif #endif using namespace llvm; -- cgit 1.4.1