ac: use the ac f64 llvm type

Reviewed-by: Marek Olšák <marek.olsak@amd.com
Acked-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Timothy Arceri 2017-11-02 13:13:07 +11:00
parent d927db0672
commit 368654a299
1 changed files with 1 additions and 3 deletions

View File

@ -134,7 +134,6 @@ struct nir_to_llvm_context {
LLVMValueRef persp_sample, persp_center, persp_centroid; LLVMValueRef persp_sample, persp_center, persp_centroid;
LLVMValueRef linear_sample, linear_center, linear_centroid; LLVMValueRef linear_sample, linear_center, linear_centroid;
LLVMTypeRef f64;
LLVMTypeRef f32; LLVMTypeRef f32;
LLVMTypeRef f16; LLVMTypeRef f16;
LLVMTypeRef v2f32; LLVMTypeRef v2f32;
@ -990,7 +989,6 @@ static void setup_types(struct nir_to_llvm_context *ctx)
{ {
ctx->f32 = LLVMFloatTypeInContext(ctx->context); ctx->f32 = LLVMFloatTypeInContext(ctx->context);
ctx->f16 = LLVMHalfTypeInContext(ctx->context); ctx->f16 = LLVMHalfTypeInContext(ctx->context);
ctx->f64 = LLVMDoubleTypeInContext(ctx->context);
ctx->v2f32 = LLVMVectorType(ctx->f32, 2); ctx->v2f32 = LLVMVectorType(ctx->f32, 2);
ctx->v4f32 = LLVMVectorType(ctx->f32, 4); 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: case GLSL_TYPE_UINT64:
return ctx->ac.i64; return ctx->ac.i64;
case GLSL_TYPE_DOUBLE: case GLSL_TYPE_DOUBLE:
return ctx->f64; return ctx->ac.f64;
default: default:
unreachable("unknown GLSL type"); unreachable("unknown GLSL type");
} }