From: Brian Paul Date: Mon, 8 Feb 2016 16:29:38 +0000 (-0700) Subject: tgsi: minor whitespace fixes in tgsi_scan.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59251610ed3a0239ec9b400e97e9b5598fe80f70;p=mesa.git tgsi: minor whitespace fixes in tgsi_scan.c Reviewed-by: Marek Olšák Reviewed-by: Edward O'Callaghan --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index 42b62aa172c..489423d7f12 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -462,12 +462,10 @@ tgsi_scan_shader(const struct tgsi_token *tokens, procType == TGSI_PROCESSOR_COMPUTE); info->processor = procType; - /** ** Loop over incoming program tokens/instructions */ - while( !tgsi_parse_end_of_tokens( &parse ) ) { - + while (!tgsi_parse_end_of_tokens(&parse)) { info->num_tokens++; tgsi_parse_token( &parse ); @@ -510,7 +508,7 @@ tgsi_scan_shader(const struct tgsi_token *tokens, } } - tgsi_parse_free (&parse); + tgsi_parse_free(&parse); }