mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
radeonsi: fix build with LLVM 3.6
Broken by this cleanup: 3dc1cb0cc7
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
9f8c01b03c
commit
f3943614ff
1 changed files with 1 additions and 1 deletions
|
|
@ -4336,7 +4336,7 @@ static void si_init_shader_ctx(struct si_shader_context *ctx,
|
|||
ctx->i1 = LLVMInt1TypeInContext(ctx->radeon_bld.gallivm.context);
|
||||
ctx->i8 = LLVMInt8TypeInContext(ctx->radeon_bld.gallivm.context);
|
||||
ctx->i32 = LLVMInt32TypeInContext(ctx->radeon_bld.gallivm.context);
|
||||
ctx->i128 = LLVMInt128TypeInContext(ctx->radeon_bld.gallivm.context);
|
||||
ctx->i128 = LLVMIntTypeInContext(ctx->radeon_bld.gallivm.context, 128);
|
||||
ctx->f32 = LLVMFloatTypeInContext(ctx->radeon_bld.gallivm.context);
|
||||
ctx->v16i8 = LLVMVectorType(ctx->i8, 16);
|
||||
ctx->v4i32 = LLVMVectorType(ctx->i32, 4);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue