From: Eric Anholt Date: Tue, 24 Apr 2012 19:18:17 +0000 (-0700) Subject: glsl: Reduce a bit of extra code in the merging of layout qualifiers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f4fb6bf08811cc69c1e635cf0af198ded197bcb0;p=mesa.git glsl: Reduce a bit of extra code in the merging of layout qualifiers. Reviewed-by: Kenneth Graunke Reviewed-by: Ian Romanick --- diff --git a/src/glsl/glsl_parser.yy b/src/glsl/glsl_parser.yy index 9ad67e27881..531d257c9d1 100644 --- a/src/glsl/glsl_parser.yy +++ b/src/glsl/glsl_parser.yy @@ -1100,13 +1100,8 @@ layout_qualifier_id_list: YYERROR; } - $$.flags.i = $1.flags.i | $3.flags.i; - - if ($1.flags.q.explicit_location) - $$.location = $1.location; - - if ($1.flags.q.explicit_index) - $$.index = $1.index; + $$ = $1; + $$.flags.i |= $3.flags.i; if ($3.flags.q.explicit_location) $$.location = $3.location;