summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/post_order.cpp
diff options
context:
space:
mode:
authorGravatar lat9nq2021-05-16 17:06:13 -0400
committerGravatar ameerj2021-07-22 21:51:31 -0400
commitf7a2340205b4fa2db32403f20d7b7afe32b15f33 (patch)
tree22059632c5f3bf068e686997d833368f6c22f6ec /src/shader_recompiler/frontend/ir/post_order.cpp
parentglasm: Implement rest of shared mem (diff)
downloadyuzu-f7a2340205b4fa2db32403f20d7b7afe32b15f33.tar.gz
yuzu-f7a2340205b4fa2db32403f20d7b7afe32b15f33.tar.xz
yuzu-f7a2340205b4fa2db32403f20d7b7afe32b15f33.zip
shader_recompiler: GCC fixes
Fixes members of unnamed union not being accessible, and one function without a declaration.
Diffstat (limited to 'src/shader_recompiler/frontend/ir/post_order.cpp')
-rw-r--r--src/shader_recompiler/frontend/ir/post_order.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/post_order.cpp b/src/shader_recompiler/frontend/ir/post_order.cpp
index 1a28df7fb..16bc44101 100644
--- a/src/shader_recompiler/frontend/ir/post_order.cpp
+++ b/src/shader_recompiler/frontend/ir/post_order.cpp
@@ -20,7 +20,7 @@ BlockList PostOrder(const AbstractSyntaxNode& root) {
20 if (root.type != AbstractSyntaxNode::Type::Block) { 20 if (root.type != AbstractSyntaxNode::Type::Block) {
21 throw LogicError("First node in abstract syntax list root is not a block"); 21 throw LogicError("First node in abstract syntax list root is not a block");
22 } 22 }
23 Block* const first_block{root.block}; 23 Block* const first_block{root.data.block};
24 visited.insert(first_block); 24 visited.insert(first_block);
25 block_stack.push_back(first_block); 25 block_stack.push_back(first_block);
26 26