From 0dc28c0fc3d53716fcc0d3a3fe3d9a29aa7ad62f Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Fri, 29 Aug 2014 20:32:20 -0700 Subject: [PATCH] Fix the %qpop/f instruction detection. --- vvp/compile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vvp/compile.cc b/vvp/compile.cc index 4115853be..0ab23b841 100644 --- a/vvp/compile.cc +++ b/vvp/compile.cc @@ -225,8 +225,8 @@ static const struct opcode_table_s opcode_table[] = { { "%pushv/str", of_PUSHV_STR, 2, {OA_BIT1,OA_BIT2, OA_NONE} }, { "%putc/str/v",of_PUTC_STR_V,3,{OA_FUNC_PTR,OA_BIT1, OA_BIT2} }, { "%qpop/b", of_QPOP_B, 3,{OA_FUNC_PTR,OA_BIT1, OA_BIT2} }, - { "%qpop/f", of_QPOP_F, 3,{OA_FUNC_PTR,OA_BIT1, OA_BIT2} }, { "%qpop/b/str",of_QPOP_B_STR,1,{OA_FUNC_PTR,OA_NONE, OA_NONE} }, + { "%qpop/f", of_QPOP_F, 3,{OA_FUNC_PTR,OA_BIT1, OA_BIT2} }, { "%qpop/f/str",of_QPOP_F_STR,1,{OA_FUNC_PTR,OA_NONE, OA_NONE} }, { "%release/net",of_RELEASE_NET,3,{OA_FUNC_PTR,OA_BIT1,OA_BIT2} }, { "%release/reg",of_RELEASE_REG,3,{OA_FUNC_PTR,OA_BIT1,OA_BIT2} },