diff options
author | Christian König <[email protected]> | 2013-03-21 17:37:37 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2013-04-02 13:01:42 +0200 |
commit | 83df955ca9f331965107c424c2e90f27e9161e3a (patch) | |
tree | 6e6e398bd63ebb7449e8196e4533f7a91bb3a603 /src/gallium/drivers/r600/r600_llvm.c | |
parent | c6efb4870b7c735e4dc1907dfdfd1be3159dc451 (diff) |
radeon/llvm: move system value fetching to common code
This should be used by both SI and R600.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Tested-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_llvm.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_llvm.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gallium/drivers/r600/r600_llvm.c b/src/gallium/drivers/r600/r600_llvm.c index e3e7d9f4fff..be8ad155987 100644 --- a/src/gallium/drivers/r600/r600_llvm.c +++ b/src/gallium/drivers/r600/r600_llvm.c @@ -72,17 +72,6 @@ static void llvm_load_system_value( LLVMReadNoneAttribute); } -static LLVMValueRef llvm_fetch_system_value( - struct lp_build_tgsi_context * bld_base, - const struct tgsi_full_src_register *reg, - enum tgsi_opcode_type type, - unsigned swizzle) -{ - struct radeon_llvm_context * ctx = radeon_llvm_context(bld_base); - LLVMValueRef cval = ctx->system_values[reg->Register.Index]; - return bitcast(bld_base, type, cval); -} - static LLVMValueRef llvm_load_input_helper( struct radeon_llvm_context * ctx, @@ -530,7 +519,6 @@ LLVMModuleRef r600_tgsi_llvm( bld_base->info = &shader_info; bld_base->userdata = ctx; bld_base->emit_fetch_funcs[TGSI_FILE_CONSTANT] = llvm_fetch_const; - bld_base->emit_fetch_funcs[TGSI_FILE_SYSTEM_VALUE] = llvm_fetch_system_value; bld_base->emit_prologue = llvm_emit_prologue; bld_base->emit_epilogue = llvm_emit_epilogue; ctx->userdata = ctx; |