summaryrefslogtreecommitdiffhomepage
path: root/vm.h
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2021-05-04 15:34:03 +0200
committerGitHub <noreply@github.com>2021-05-04 15:34:03 +0200
commita5aead5161821b2f5be9ae76f1bd76e8814147bd (patch)
tree7a19da0fefd0460f31d29ce0f4cb8dba8521dfea /vm.h
parent97741fb0ed1f2ad3d828d55de3e08c7513aff763 (diff)
parent827a34a861824c80eb54e0ec30507ee316e3b739 (diff)
Merge pull request #9 from jow-/remove-unused-struct-members
vm, compiler: get rid of unused struct members
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/vm.h b/vm.h
index 0f7b805..30844f7 100644
--- a/vm.h
+++ b/vm.h
@@ -98,12 +98,6 @@ enum insn_type {
__I_MAX
};
-typedef struct {
- int8_t stack_pop;
- int8_t stack_push;
- int8_t operand_bytes;
-} uc_insn_definition;
-
typedef enum {
STATUS_OK,
ERROR_COMPILE,