aco: remove can_reorder semantic in get_sync_info_with_hack

No fossil-db changes.

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8416>
This commit is contained in:
Rhys Perry
2020-08-27 12:11:46 +01:00
committed by Marge Bot
parent f8c7661eca
commit 4ea0ce2f55
+1 -1
View File
@@ -342,7 +342,7 @@ memory_sync_info get_sync_info_with_hack(const Instruction* instr)
if (instr->format == Format::SMEM && !instr->operands.empty() && instr->operands[0].bytes() == 16) {
// FIXME: currently, it doesn't seem beneficial to omit this due to how our scheduler works
sync.storage = (storage_class)(sync.storage | storage_buffer);
sync.semantics = (memory_semantics)(sync.semantics | semantic_private);
sync.semantics = (memory_semantics)((sync.semantics | semantic_private) & ~semantic_can_reorder);
}
return sync;
}