diff options
author | Ilia Mirkin <[email protected]> | 2015-11-06 17:58:42 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-11-06 18:13:31 -0500 |
commit | 2437f0085372355980864454964749ac8231ca44 (patch) | |
tree | 2eb80b9d31274c910f8e658342afa9ce7962f8b7 /src/gallium/drivers/nouveau | |
parent | 11e3dac36e7b992e30efbce4473451c4e1ac617f (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp index f3ddcaa5199..94cf0f0e05e 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp @@ -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: |