summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/opcodes.cpp
diff options
context:
space:
mode:
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