diff options
author | Timothy Arceri <[email protected]> | 2018-01-29 11:07:28 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-01-29 11:14:23 +1100 |
commit | 9afc38c79913ec6809b6f00a29671a2f8adc042c (patch) | |
tree | 67cc324ce6acb846369dc5807e38220b23327b0f /src/amd | |
parent | 03086f86aed1ae3d352e3a4276886aa50c97b2ff (diff) |
ac: fix indentation
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 6591d3caa43..b3336ffafea 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -3169,12 +3169,12 @@ static LLVMValueRef visit_load_var(struct ac_nir_context *ctx, } if (ctx->stage == MESA_SHADER_GEOMETRY) { - LLVMTypeRef type = LLVMIntTypeInContext(ctx->ac.context, instr->dest.ssa.bit_size); - LLVMValueRef indir_index; - unsigned const_index, vertex_index; - get_deref_offset(ctx, instr->variables[0], - false, &vertex_index, NULL, - &const_index, &indir_index); + LLVMTypeRef type = LLVMIntTypeInContext(ctx->ac.context, instr->dest.ssa.bit_size); + LLVMValueRef indir_index; + unsigned const_index, vertex_index; + get_deref_offset(ctx, instr->variables[0], + false, &vertex_index, NULL, + &const_index, &indir_index); return ctx->abi->load_inputs(ctx->abi, instr->variables[0]->var->data.location, instr->variables[0]->var->data.driver_location, |