summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/opcodes.cpp
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-02-05 23:11:23 -0300
committerGravatar ameerj2021-07-22 21:51:21 -0400
commit16cb00c521cae6e93ec49d10e15b575b7bc4857e (patch)
tree3b283895510af56fced7e62031c6beda999c0a1c /src/shader_recompiler/frontend/ir/opcodes.cpp
parentshader: Make typed IR (diff)
downloadyuzu-16cb00c521cae6e93ec49d10e15b575b7bc4857e.tar.gz
yuzu-16cb00c521cae6e93ec49d10e15b575b7bc4857e.tar.xz
yuzu-16cb00c521cae6e93ec49d10e15b575b7bc4857e.zip
shader: Add pools and rename files
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/ir/opcodes.cpp (renamed from src/shader_recompiler/frontend/ir/opcode.cpp)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcode.cpp b/src/shader_recompiler/frontend/ir/opcodes.cpp
index 65d074029..1f188411a 100644
--- a/src/shader_recompiler/frontend/ir/opcode.cpp
+++ b/src/shader_recompiler/frontend/ir/opcodes.cpp
@@ -7,7 +7,7 @@
7#include <string_view> 7#include <string_view>
8 8
9#include "shader_recompiler/exception.h" 9#include "shader_recompiler/exception.h"
10#include "shader_recompiler/frontend/ir/opcode.h" 10#include "shader_recompiler/frontend/ir/opcodes.h"
11 11
12namespace Shader::IR { 12namespace Shader::IR {
13namespace { 13namespace {
@@ -26,7 +26,7 @@ constexpr std::array META_TABLE{
26 .type{type_token}, \ 26 .type{type_token}, \
27 .arg_types{__VA_ARGS__}, \ 27 .arg_types{__VA_ARGS__}, \
28 }, 28 },
29#include "opcode.inc" 29#include "opcodes.inc"
30#undef OPCODE 30#undef OPCODE
31}; 31};
32 32