From 9644f84280ea5f5d6c94161860e7f1780e27f8bd Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Tue, 29 Nov 2011 02:13:21 +0000 Subject: Updates for LLVM 3.1. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@145365 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Module/RaiseAsm.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/Module') diff --git a/lib/Module/RaiseAsm.cpp b/lib/Module/RaiseAsm.cpp index 60bf28a1..1f7f756f 100644 --- a/lib/Module/RaiseAsm.cpp +++ b/lib/Module/RaiseAsm.cpp @@ -90,7 +90,11 @@ bool RaiseAsmPass::runOnModule(Module &M) { #if LLVM_VERSION_CODE >= LLVM_VERSION(2, 9) std::string Err; +#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 1) + std::string HostTriple = llvm::sys::getDefaultTargetTriple(); +#else std::string HostTriple = llvm::sys::getHostTriple(); +#endif const Target *NativeTarget = TargetRegistry::lookupTarget(HostTriple, Err); if (NativeTarget == 0) { llvm::errs() << "Warning: unable to select native target: " << Err << "\n"; -- cgit 1.4.1