diff options
author | Karol Herbst <[email protected]> | 2017-03-26 21:45:59 +0200 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2017-03-31 23:57:14 -0400 |
commit | ad638514e362d0e84d28df2346a53fb9b29ff884 (patch) | |
tree | 6ec5c788da6287c6090232be2f37a122d1c362d3 /src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp | |
parent | d346b8588c36949695f2b01ca76619e84754dd50 (diff) |
gk110/ir: add LIMM form of mad
v2: renamed commit
reordered modifiers
add assert(dst == src2)
v3: removed wrong neg mod emission
Signed-off-by: Karol Herbst <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp index f7293b273ee..df0f35949d6 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp @@ -3741,7 +3741,7 @@ bool Program::optimizePostRA(int level) { RUN_PASS(2, FlatteningPass, run); - if (getTarget()->getChipset() < NVISA_GK20A_CHIPSET) + if (getTarget()->getChipset() < NVISA_GM107_CHIPSET) RUN_PASS(2, PostRaLoadPropagation, run); return true; |