diff options
| author | 2021-02-14 20:15:42 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:22 -0400 | |
| commit | cbfb7d182a4e90e4e263696d1fca35e47d3eabb4 (patch) | |
| tree | a8d384aa0daefdfafd9b61330e06b1cf7ac40ea6 /src/shader_recompiler/frontend/ir/function.h | |
| parent | shader: Misc fixes (diff) | |
| download | yuzu-cbfb7d182a4e90e4e263696d1fca35e47d3eabb4.tar.gz yuzu-cbfb7d182a4e90e4e263696d1fca35e47d3eabb4.tar.xz yuzu-cbfb7d182a4e90e4e263696d1fca35e47d3eabb4.zip | |
shader: Support SSA loops on IR
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/function.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/function.h b/src/shader_recompiler/frontend/ir/function.h index fd7d56419..d1f061146 100644 --- a/src/shader_recompiler/frontend/ir/function.h +++ b/src/shader_recompiler/frontend/ir/function.h | |||
| @@ -12,6 +12,7 @@ namespace Shader::IR { | |||
| 12 | 12 | ||
| 13 | struct Function { | 13 | struct Function { |
| 14 | BlockList blocks; | 14 | BlockList blocks; |
| 15 | BlockList post_order_blocks; | ||
| 15 | }; | 16 | }; |
| 16 | 17 | ||
| 17 | } // namespace Shader::IR | 18 | } // namespace Shader::IR |