aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-15 18:18:31 -0300
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-22 21:51:31 -0400
commit776ab3ea12f07e2d434a26857d412cff018b1b50 (patch)
tree0b1631b3e16ecb7eae8af43309d1cc60895d4f88 /src/shader_recompiler/frontend
parent38e7b8c80552a453580db641c20eba9e86cdf106 (diff)
shader: Use a non-trivial dummy to construct ASL node union
Diffstat (limited to 'src/shader_recompiler/frontend')
-rw-r--r--src/shader_recompiler/frontend/ir/abstract_syntax_list.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/abstract_syntax_list.h b/src/shader_recompiler/frontend/ir/abstract_syntax_list.h
index 1366414c25..e9afb4d92d 100644
--- a/src/shader_recompiler/frontend/ir/abstract_syntax_list.h
+++ b/src/shader_recompiler/frontend/ir/abstract_syntax_list.h
@@ -13,6 +13,10 @@ namespace Shader::IR {
class Block;
struct AbstractSyntaxNode {
+ struct NonTrivialDummy {
+ NonTrivialDummy() {}
+ };
+
enum class Type {
Block,
If,
@@ -25,7 +29,8 @@ struct AbstractSyntaxNode {
};
Type type{};
union {
- Block* block{};
+ NonTrivialDummy dummy{};
+ Block* block;
struct {
U1 cond;
Block* body;