summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar lat9nq2021-06-24 00:19:31 -0400
committerGravatar ameerj2021-07-22 21:51:39 -0400
commit257d2aab7469ba0ea6cf26e6aec99043b5ed2f59 (patch)
treefe0179c14b911b3f189d3ba75fdc4452f6850851
parentshader: Emulate 64-bit integers when not supported (diff)
downloadyuzu-257d2aab7469ba0ea6cf26e6aec99043b5ed2f59.tar.gz
yuzu-257d2aab7469ba0ea6cf26e6aec99043b5ed2f59.tar.xz
yuzu-257d2aab7469ba0ea6cf26e6aec99043b5ed2f59.zip
lower_int64_to_int32: Add missing include
-rw-r--r--src/shader_recompiler/ir_opt/lower_int64_to_int32.cpp1
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
14namespace Shader::Optimization { 15namespace Shader::Optimization {
15namespace { 16namespace {