From: Eric Anholt Date: Thu, 24 Jun 2010 22:03:05 +0000 (-0700) Subject: Make inlined function variables auto, not in/out. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9290e0dd28e646c3dc810e0a6405582f8bf643b6;p=mesa.git Make inlined function variables auto, not in/out. --- diff --git a/ir_function_inlining.cpp b/ir_function_inlining.cpp index d74de650e0a..851c0dd9f7b 100644 --- a/ir_function_inlining.cpp +++ b/ir_function_inlining.cpp @@ -146,11 +146,12 @@ ir_call::generate_inline(ir_instruction *next_ir) /* Generate a new variable for the parameter. */ parameters[i] = (ir_variable *)sig_param->clone(ht); + parameters[i]->mode = ir_var_auto; next_ir->insert_before(parameters[i]); /* Move the actual param into our param variable if it's an 'in' type. */ - if (parameters[i]->mode == ir_var_in || - parameters[i]->mode == ir_var_inout) { + if (sig_param->mode == ir_var_in || + sig_param->mode == ir_var_inout) { ir_assignment *assign; assign = new ir_assignment(new ir_dereference_variable(parameters[i]),