diff options
author | Roland Scheidegger <[email protected]> | 2016-05-08 02:27:45 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2016-05-10 17:08:16 +0200 |
commit | 5c200894c80b3e9ae3519ded9cc1b311e79c0e24 (patch) | |
tree | f92985830a4362d6f7778b898778b98ee8416a32 /src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c | |
parent | 8b66e2647d5e36e318177a460e6e586d6ca8c36b (diff) |
gallivm: use InternalLinkage instead of PrivateLinkage for texture functions
At least with MCJIT the disassembler will crash otherwise when trying to
disassemble such functions.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c index 31cf74f0ceb..3a8327d8305 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c @@ -3320,7 +3320,7 @@ lp_build_sample_soa_func(struct gallivm_state *gallivm, } LLVMSetFunctionCallConv(function, LLVMFastCallConv); - LLVMSetLinkage(function, LLVMPrivateLinkage); + LLVMSetLinkage(function, LLVMInternalLinkage); lp_build_sample_gen_func(gallivm, static_texture_state, |