diff options
author | Dave Airlie <[email protected]> | 2016-06-10 11:05:51 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-06-11 06:44:21 +1000 |
commit | f550b6d296220fdc5f256bb55a3b3422930f957d (patch) | |
tree | a8ad5f09eead03baeeabc98f59fa26042387f964 /src/gallium/drivers/radeon/radeon_llvm.h | |
parent | e5c57824ec4021a859f5cbd4feba148d068713ee (diff) |
radeonsi: convert to 64-bitness checks instead of doubles.
This converts to testing for 64-bit types and renames some things
in anticipation of 64-bit integer support.
Reviewed-by: Nicolai Hähnle <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/radeon_llvm.h')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_llvm.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeon/radeon_llvm.h b/src/gallium/drivers/radeon/radeon_llvm.h index 3e11b36b1fd..ec16def204d 100644 --- a/src/gallium/drivers/radeon/radeon_llvm.h +++ b/src/gallium/drivers/radeon/radeon_llvm.h @@ -171,9 +171,10 @@ build_tgsi_intrinsic_nomem( struct lp_build_emit_data * emit_data); LLVMValueRef -radeon_llvm_emit_fetch_double(struct lp_build_tgsi_context *bld_base, - LLVMValueRef ptr, - LLVMValueRef ptr2); +radeon_llvm_emit_fetch_64bit(struct lp_build_tgsi_context *bld_base, + enum tgsi_opcode_type type, + LLVMValueRef ptr, + LLVMValueRef ptr2); LLVMValueRef radeon_llvm_saturate(struct lp_build_tgsi_context *bld_base, LLVMValueRef value); |