diff options
| author | 2021-06-24 00:19:31 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:39 -0400 | |
| commit | 257d2aab7469ba0ea6cf26e6aec99043b5ed2f59 (patch) | |
| tree | fe0179c14b911b3f189d3ba75fdc4452f6850851 | |
| parent | shader: Emulate 64-bit integers when not supported (diff) | |
| download | yuzu-257d2aab7469ba0ea6cf26e6aec99043b5ed2f59.tar.gz yuzu-257d2aab7469ba0ea6cf26e6aec99043b5ed2f59.tar.xz yuzu-257d2aab7469ba0ea6cf26e6aec99043b5ed2f59.zip | |
lower_int64_to_int32: Add missing include
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/ir_opt/lower_int64_to_int32.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/ir_opt/lower_int64_to_int32.cpp b/src/shader_recompiler/ir_opt/lower_int64_to_int32.cpp index 787a64f93..abf7c87c7 100644 --- a/src/shader_recompiler/ir_opt/lower_int64_to_int32.cpp +++ b/src/shader_recompiler/ir_opt/lower_int64_to_int32.cpp | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #include "shader_recompiler/frontend/ir/ir_emitter.h" | 10 | #include "shader_recompiler/frontend/ir/ir_emitter.h" |
| 11 | #include "shader_recompiler/frontend/ir/program.h" | 11 | #include "shader_recompiler/frontend/ir/program.h" |
| 12 | #include "shader_recompiler/frontend/ir/value.h" | 12 | #include "shader_recompiler/frontend/ir/value.h" |
| 13 | #include "shader_recompiler/ir_opt/passes.h" | ||
| 13 | 14 | ||
| 14 | namespace Shader::Optimization { | 15 | namespace Shader::Optimization { |
| 15 | namespace { | 16 | namespace { |