From b24d490a42390d9d83b4b523bb92462098aac1f2 Mon Sep 17 00:00:00 2001 From: Michael Munday Date: Tue, 6 Dec 2016 09:16:30 -0500 Subject: [PATCH] Fix test table (needed comma at end of line to compile). Also, re-align table columns. --- dynasm/Examples/test_z_inst.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dynasm/Examples/test_z_inst.c b/dynasm/Examples/test_z_inst.c index dbb50eb5..547a1c46 100644 --- a/dynasm/Examples/test_z_inst.c +++ b/dynasm/Examples/test_z_inst.c @@ -102,14 +102,14 @@ typedef struct { } test_table; test_table test[] = { - { 1, 2, add, 3, "add"}, - {10, 5, sub, 5, "sub"}, - { 2, 3, mul, 6, "mul"}, - { 5, 7, rx, 12298, "rx"}, - { 5, 7, rxy, 10, "rxy"}, - { 2, 4, lab, 32, "lab"}, - { 2, 0, add_imm16,17, "imm16"} - { 2, 0, add_imm32,16, "imm32"} + { 1, 2, add, 3, "add"}, + {10, 5, sub, 5, "sub"}, + { 2, 3, mul, 6, "mul"}, + { 5, 7, rx, 12298, "rx"}, + { 5, 7, rxy, 10, "rxy"}, + { 2, 4, lab, 32, "lab"}, + { 2, 0, add_imm16, 17, "imm16"}, + { 2, 0, add_imm32, 16, "imm32"} }; static void *jitcode(dasm_State **state, size_t *size)