mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-27 15:20:37 +02:00
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:
parent
230a5b5f1c
commit
399190d136
1 changed files with 1 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue