nv50/ir: the whole point of data array is to hand out regular registers

Fixes: 0d3051f75a (nv50/ir: Fix scratch allocation size and file)
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
Ilia Mirkin 2016-01-11 12:58:19 -05:00
parent a9eace326e
commit f21df5c513
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ BuildUtil::DataArray::acquire(ValueMap &m, int i, int c)
return v;
} else {
return up->getScratch(eltSize, file);
return up->getScratch(eltSize);
}
}