From: Francisco Jerez Date: Tue, 20 Mar 2012 21:46:11 +0000 (+0100) Subject: gallium/tgsi/text: Replace open-coded integer parsing with parse_int(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2faf01c8403514dda15ab8b1a2309d5529dd06ba;p=mesa.git gallium/tgsi/text: Replace open-coded integer parsing with parse_int(). --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_text.c b/src/gallium/auxiliary/tgsi/tgsi_text.c index c38adeb931c..279a046e202 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_text.c +++ b/src/gallium/auxiliary/tgsi/tgsi_text.c @@ -466,24 +466,10 @@ parse_register_bracket( eat_opt_white(&ctx->cur); } - if (*ctx->cur == '+' || *ctx->cur == '-') { - boolean negate; - - negate = *ctx->cur == '-'; - ctx->cur++; - eat_opt_white( &ctx->cur ); - if (!parse_uint( &ctx->cur, &uindex )) { - report_error( ctx, "Expected literal unsigned integer" ); - return FALSE; - } - if (negate) - brackets->index = -(int) uindex; - else - brackets->index = (int) uindex; - } - else { + if (*ctx->cur == '+' || *ctx->cur == '-') + parse_int( &ctx->cur, &brackets->index ); + else brackets->index = 0; - } } else { if (!parse_uint( &ctx->cur, &uindex )) {