tgsi: Don't dump parenthesis for negation.

It doesn't seem necessary, and more importantly, tgsi_parse doesn't know
how to read them.
This commit is contained in:
José Fonseca 2009-12-26 10:59:46 +00:00
parent 230a5b5f1c
commit 399190d136

View file

@ -506,7 +506,7 @@ iter_instruction(
CHR( ' ' );
if (src->Register.Negate)
TXT( "-(" );
CHR( '-' );
if (src->Register.Absolute)
CHR( '|' );
@ -525,8 +525,6 @@ iter_instruction(
if (src->Register.Absolute)
CHR( '|' );
if (src->Register.Negate)
CHR( ')' );
first_reg = FALSE;
}