diff options
author | Ilia Mirkin <[email protected]> | 2016-01-20 17:15:27 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-01-20 17:16:09 -0500 |
commit | 3a635761685e839447fec2e5f84ce8bb8682dbc7 (patch) | |
tree | 8afac2bbd70ec11870f7e01deb84e0462e722f0a /src/gallium | |
parent | 9f23007a7a56d576c8f20b76583ca2416e94a75d (diff) |
gk110/ir: fix load from shared memory
It was accidentally using the store opcode.
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp index d79f3060beb..4248d6cb248 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp @@ -1613,7 +1613,7 @@ CodeEmitterGK110::emitLOAD(const Instruction *i) switch (i->src(0).getFile()) { case FILE_MEMORY_GLOBAL: code[1] = 0xc0000000; code[0] = 0x00000000; break; case FILE_MEMORY_LOCAL: code[1] = 0x7a000000; code[0] = 0x00000002; break; - case FILE_MEMORY_SHARED: code[1] = 0x7ac00000; code[0] = 0x00000002; break; + case FILE_MEMORY_SHARED: code[1] = 0x7a400000; code[0] = 0x00000002; break; case FILE_MEMORY_CONST: if (!i->src(0).isIndirect(0) && typeSizeof(i->dType) == 4) { emitMOV(i); |