2
0

rocr: Fix compile error when using clang

Este cometimento está contido em:
David Yat Sin
2025-05-27 20:25:24 +00:00
cometido por Yat Sin, David
ascendente d9a95605cc
cometimento 9d38ca0d22
+1 -1
Ver ficheiro
@@ -446,7 +446,7 @@ class GpuAgent : public GpuAgentInt {
_mm_sfence();
*((uint8_t*)ptr + size - 1) = *((uint8_t*)ptr + size - 1);
_mm_mfence();
auto readback = *reinterpret_cast<volatile uint8_t*>(ptr + size - 1);
auto readback = *(reinterpret_cast<volatile uint8_t*>(ptr) + size - 1);
}
}