From: Matt Turner Date: Sun, 1 Jun 2014 18:43:15 +0000 (-0700) Subject: glsl: Remove useless call to as_rvalue(). X-Git-Tag: upstream/10.3~1724 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3540b5eb55d07f46f471956dd4fc18d5102b26f4;p=platform%2Fupstream%2Fmesa.git glsl: Remove useless call to as_rvalue(). The type returned by hir() is already an ir_rvalue pointer. Reviewed-by: Juha-Pekka Heikkila --- diff --git a/src/glsl/ast_function.cpp b/src/glsl/ast_function.cpp index 4b84470..a8bf27d 100644 --- a/src/glsl/ast_function.cpp +++ b/src/glsl/ast_function.cpp @@ -1560,7 +1560,7 @@ ast_function_expression::hir(exec_list *instructions, foreach_list (n, &this->expressions) { ast_node *ast = exec_node_data(ast_node, n, link); - ir_rvalue *result = ast->hir(instructions, state)->as_rvalue(); + ir_rvalue *result = ast->hir(instructions, state); /* From page 50 (page 56 of the PDF) of the GLSL 1.50 spec: *