diff options
author | Vinson Lee <[email protected]> | 2011-07-11 14:08:24 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-07-11 14:08:24 -0700 |
commit | 1844ae7e7e2285f52dc0ecd42194ccc47e3137ef (patch) | |
tree | 3871a03e393e218bf3d042797fa9bcf2713aeb8e /src/gallium/auxiliary/gallivm | |
parent | a09b7f7f150d1687a614fd59cf09ec5e3c3a13fd (diff) |
gallivm: Re-enable LLVMUnionTypeKind case for llvm-2.7 only.
LLVMUnionTypeKind is not in llvm-2.6, llvm-2.8, llvm-2.9, or llvm-3.0svn.
Diffstat (limited to 'src/gallium/auxiliary/gallivm')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_type.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_type.c b/src/gallium/auxiliary/gallivm/lp_bld_type.c index 11a2b055cc2..efd159f8869 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_type.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_type.c @@ -333,10 +333,10 @@ lp_typekind_name(LLVMTypeKind t) return "LLVMVectorTypeKind"; case LLVMMetadataTypeKind: return "LLVMMetadataTypeKind"; - /* Only in LLVM 2.7 and later??? +#if HAVE_LLVM == 0x0207 case LLVMUnionTypeKind: return "LLVMUnionTypeKind"; - */ +#endif default: return "unknown LLVMTypeKind"; } |