diff options
author | Ian Romanick <[email protected]> | 2012-12-11 12:54:02 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-01-18 17:35:33 -0800 |
commit | bd85c75922c5f82159e11b3e19ff95d82c35a21f (patch) | |
tree | 576316dd611df5bda3cc7b2002a2eff6be95be0a /src/glsl/ast_function.cpp | |
parent | 56053b0a2d80c5f7041a588fdc442977b1362289 (diff) |
glsl: Remove unused loc parameter from generate_call
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/ast_function.cpp')
-rw-r--r-- | src/glsl/ast_function.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/ast_function.cpp b/src/glsl/ast_function.cpp index b56a3c72339..dc7a58bf276 100644 --- a/src/glsl/ast_function.cpp +++ b/src/glsl/ast_function.cpp @@ -183,7 +183,7 @@ verify_parameter_modes(_mesa_glsl_parse_state *state, */ static ir_rvalue * generate_call(exec_list *instructions, ir_function_signature *sig, - YYLTYPE *loc, exec_list *actual_parameters, + exec_list *actual_parameters, ir_call **call_ir, struct _mesa_glsl_parse_state *state) { @@ -1501,7 +1501,7 @@ ast_function_expression::hir(exec_list *instructions, /* an error has already been emitted */ value = ir_rvalue::error_value(ctx); } else { - value = generate_call(instructions, sig, &loc, &actual_parameters, + value = generate_call(instructions, sig, &actual_parameters, &call, state); } |