diff options
author | Timothy Arceri <[email protected]> | 2017-11-02 13:13:07 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-11-03 14:54:46 +1100 |
commit | 368654a29964968f8b0fafa23afcc02fffb75e75 (patch) | |
tree | 2ffbc74d73f791768b18f28d2338dea69c3de407 /src/amd | |
parent | d927db0672d513998350ba11ace685ecac9ab4f3 (diff) |
ac: use the ac f64 llvm type
Reviewed-by: Marek Olšák <[email protected]
Acked-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index b0f0ea63edb..45eb6135792 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -134,7 +134,6 @@ struct nir_to_llvm_context { LLVMValueRef persp_sample, persp_center, persp_centroid; LLVMValueRef linear_sample, linear_center, linear_centroid; - LLVMTypeRef f64; LLVMTypeRef f32; LLVMTypeRef f16; LLVMTypeRef v2f32; @@ -990,7 +989,6 @@ static void setup_types(struct nir_to_llvm_context *ctx) { ctx->f32 = LLVMFloatTypeInContext(ctx->context); ctx->f16 = LLVMHalfTypeInContext(ctx->context); - ctx->f64 = LLVMDoubleTypeInContext(ctx->context); ctx->v2f32 = LLVMVectorType(ctx->f32, 2); ctx->v4f32 = LLVMVectorType(ctx->f32, 4); @@ -5323,7 +5321,7 @@ glsl_base_to_llvm_type(struct nir_to_llvm_context *ctx, case GLSL_TYPE_UINT64: return ctx->ac.i64; case GLSL_TYPE_DOUBLE: - return ctx->f64; + return ctx->ac.f64; default: unreachable("unknown GLSL type"); } |