mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
nv50/ir: disallow 64-bit immediates on nv50 targets
No instructions are able to load short immediates like nvc0 can. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
11e3dac36e
commit
2437f00853
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ TargetNV50::insnCanLoad(const Instruction *i, int s,
|
|||
}
|
||||
|
||||
if (sf == FILE_IMMEDIATE)
|
||||
return true;
|
||||
return ldSize <= 4;
|
||||
|
||||
|
||||
// Check if memory access is encodable:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue