summaryrefslogtreecommitdiff
path: root/src/opcode-code-table.c
diff options
context:
space:
mode:
authorAlex Reinking <reinking@google.com>2022-09-28 07:24:49 -0700
committerGitHub <noreply@github.com>2022-09-28 07:24:49 -0700
commita4a77c18df16d6ee672f2a2564969bc9b2beef3a (patch)
treee4368558b4b44a7421761341e3b18edbd93f9785 /src/opcode-code-table.c
parent520614a5f83878a4d26702a3ad67c44302c2b073 (diff)
downloadwabt-a4a77c18df16d6ee672f2a2564969bc9b2beef3a.tar.gz
wabt-a4a77c18df16d6ee672f2a2564969bc9b2beef3a.tar.bz2
wabt-a4a77c18df16d6ee672f2a2564969bc9b2beef3a.zip
Move headers to include/wabt/ (#1998)
This makes things easier for users and packagers of libwabt.
Diffstat (limited to 'src/opcode-code-table.c')
-rw-r--r--src/opcode-code-table.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opcode-code-table.c b/src/opcode-code-table.c
index c3e06d03..b9b32a1a 100644
--- a/src/opcode-code-table.c
+++ b/src/opcode-code-table.c
@@ -14,9 +14,9 @@
* limitations under the License.
*/
-#include "src/opcode-code-table.h"
+#include "wabt/opcode-code-table.h"
-#include "config.h"
+#include "wabt/config.h"
#include <stdint.h>
@@ -24,7 +24,7 @@ typedef enum WabtOpcodeEnum {
#define WABT_OPCODE(rtype, type1, type2, type3, mem_size, prefix, code, Name, \
text, decomp) \
Name,
-#include "opcode.def"
+#include "wabt/opcode.def"
#undef WABT_OPCODE
Invalid,
} WabtOpcodeEnum;
@@ -36,6 +36,6 @@ uint32_t WabtOpcodeCodeTable[WABT_OPCODE_CODE_TABLE_SIZE] = {
#define WABT_OPCODE(rtype, type1, type2, type3, mem_size, prefix, code, Name, \
text, decomp) \
[(prefix << 8) + code] = Name,
-#include "opcode.def"
+#include "wabt/opcode.def"
#undef WABT_OPCODE
};