aco: fix C++11/C++14 compilation
authorRhys Perry <pendingchaos02@gmail.com>
Thu, 6 Aug 2020 22:21:47 +0000 (23:21 +0100)
committerRhys Perry <pendingchaos02@gmail.com>
Thu, 6 Aug 2020 22:51:14 +0000 (23:51 +0100)
static_assert without a message is only available since C++17.

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Fixes: d1f992f3c2d ('aco: rework barriers and replace can_reorder')
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3374
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6216>

src/amd/compiler/aco_ir.h

index 9dda1ffb723d8fb7a06466628ff05dfbe6d5db3b..1d6220ef928f3d7df4b447ca3dd93bb293071808 100644 (file)
@@ -174,7 +174,7 @@ struct memory_sync_info {
       return (!storage || (semantics & semantic_can_reorder)) && !(semantics & semantic_volatile);
    }
 };
       return (!storage || (semantics & semantic_can_reorder)) && !(semantics & semantic_volatile);
    }
 };
-static_assert(sizeof(memory_sync_info) == 3);
+static_assert(sizeof(memory_sync_info) == 3, "Unexpected padding");
 
 enum fp_round {
    fp_round_ne = 0,
 
 enum fp_round {
    fp_round_ne = 0,