diff options
| author | 2021-04-21 00:35:47 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:28 -0400 | |
| commit | 050e81500c002f304d581f28700de549b828a2bc (patch) | |
| tree | 906868122c08a0771987e6953c096476c0ebc277 /src/shader_recompiler/frontend/ir/program.cpp | |
| parent | shader: Move siblings check to a separate function and comment them out (diff) | |
| download | yuzu-050e81500c002f304d581f28700de549b828a2bc.tar.gz yuzu-050e81500c002f304d581f28700de549b828a2bc.tar.xz yuzu-050e81500c002f304d581f28700de549b828a2bc.zip | |
shader: Move microinstruction header to the value header
Diffstat (limited to 'src/shader_recompiler/frontend/ir/program.cpp')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/program.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/program.cpp b/src/shader_recompiler/frontend/ir/program.cpp index 89a17fb1b..3fc06f855 100644 --- a/src/shader_recompiler/frontend/ir/program.cpp +++ b/src/shader_recompiler/frontend/ir/program.cpp | |||
| @@ -8,8 +8,8 @@ | |||
| 8 | #include <fmt/format.h> | 8 | #include <fmt/format.h> |
| 9 | 9 | ||
| 10 | #include "shader_recompiler/frontend/ir/basic_block.h" | 10 | #include "shader_recompiler/frontend/ir/basic_block.h" |
| 11 | #include "shader_recompiler/frontend/ir/microinstruction.h" | ||
| 12 | #include "shader_recompiler/frontend/ir/program.h" | 11 | #include "shader_recompiler/frontend/ir/program.h" |
| 12 | #include "shader_recompiler/frontend/ir/value.h" | ||
| 13 | 13 | ||
| 14 | namespace Shader::IR { | 14 | namespace Shader::IR { |
| 15 | 15 | ||