# HG changeset patch # User William Astle # Date 1432683682 21600 # Node ID fa3659ffa83498215681a4fae1b669dd322df127 # Parent b6933dc299e631c7c67e0705e249554be0f3aa43 Fix missing column in terminal entry in instruction table Thanks to Erik G for pointing out the error. It was operating correctly due to the happy accident but setting a pointer to an enum value is just not kosher. diff -r b6933dc299e6 -r fa3659ffa834 lwasm/instab.c --- a/lwasm/instab.c Wed May 20 15:06:18 2015 -0600 +++ b/lwasm/instab.c Tue May 26 17:41:22 2015 -0600 @@ -756,5 +756,5 @@ { "wai", { 0x3cff, -1, -1, -1 }, insn_parse_inh6800, insn_resolve_inh6800, insn_emit_inh6800, lwasm_insn_is6800 }, // flag end of table - { NULL, { -1, -1, -1, -1 }, NULL, NULL, lwasm_insn_normal} + { NULL, { -1, -1, -1, -1 }, NULL, NULL, NULL, lwasm_insn_normal} };