summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorTom Stellard <[email protected]>2012-04-16 17:47:04 -0400
committerTom Stellard <[email protected]>2012-04-23 08:53:48 -0400
commit6e238bf27c34fa9d79c9f371c102a5423db86de8 (patch)
tree11fa4ee4524f333c78c101f58495373af1c37d44 /src/gallium/drivers
parent65b35b63d377a1a74627d60ea6f8f1caae6a01a9 (diff)
radeon: Remove HAVE_LLVM ifdefs
Only LLVM 3.1 is supported, so these are not necessary. Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/radeon/radeon_llvm_emit.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gallium/drivers/radeon/radeon_llvm_emit.cpp b/src/gallium/drivers/radeon/radeon_llvm_emit.cpp
index 1bc6a15610a..04fd6dd6b36 100644
--- a/src/gallium/drivers/radeon/radeon_llvm_emit.cpp
+++ b/src/gallium/drivers/radeon/radeon_llvm_emit.cpp
@@ -68,12 +68,7 @@ radeon_llvm_compile(LLVMModuleRef M, unsigned char ** bytes,
unsigned * byte_count, const char * gpu_family,
unsigned dump) {
-#if HAVE_LLVM > 0x0300
Triple AMDGPUTriple(sys::getDefaultTargetTriple());
-#else
- Triple AMDGPUTriple(sys::getHostTriple());
-#endif
-
#ifdef EXTERNAL_LLVM
/* XXX: Can we just initialize the AMDGPU target here? */
@@ -100,9 +95,7 @@ radeon_llvm_compile(LLVMModuleRef M, unsigned char ** bytes,
Module * mod = unwrap(M);
std::string FS = gpu_family;
-#if HAVE_LLVM > 0x0300
TargetOptions TO;
-#endif
std::auto_ptr<TargetMachine> tm(AMDGPUTarget->createTargetMachine(
AMDGPUTriple.getTriple(), gpu_family, "" /* Features */,
@@ -125,9 +118,6 @@ radeon_llvm_compile(LLVMModuleRef M, unsigned char ** bytes,
/* Optional extra paramater true / false to disable verify */
if (AMDGPUTargetMachine.addPassesToEmitFile(PM, out, TargetMachine::CGFT_AssemblyFile,
-#if HAVE_LLVM <= 0x300
- CodeGenOpt::Default,
-#endif
true)){
fprintf(stderr, "AddingPasses failed.\n");
return 1;