mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-20 20:50:44 +02:00
pan/midgard: Absorb nonexistance sources
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
parent
0a7cc239bd
commit
cc3df917d3
1 changed files with 5 additions and 0 deletions
|
|
@ -34,6 +34,11 @@
|
|||
static void
|
||||
mir_print_index(int source)
|
||||
{
|
||||
if (source < 0) {
|
||||
printf("_");
|
||||
return;
|
||||
}
|
||||
|
||||
if (source >= SSA_FIXED_MINIMUM) {
|
||||
/* Specific register */
|
||||
int reg = SSA_REG_FROM_FIXED(source);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue