1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

gpgscm: Merge 'opexe_6'.

* tests/gpgscm/scheme.c (opexe_6): Merge into 'opexe_0'.
* tests/gpgscm/opdefines.h: Adapt.
--

Having separate functions to execute opcodes reduces our ability to
thread the code and prevents the dispatch_table from being moved to
rodata.

Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2017-03-29 14:05:22 +02:00
parent 1379df4453
commit ddf444828b
No known key found for this signature in database
GPG key ID: DD1A52F9DA8C9020
2 changed files with 11 additions and 25 deletions

View file

@ -196,11 +196,11 @@
_OP_DEF(opexe_0, 0, 0, 0, 0, OP_P0LIST )
_OP_DEF(opexe_0, 0, 0, 0, 0, OP_P1LIST )
_OP_DEF(opexe_0, 0, 0, 0, 0, OP_PVECFROM )
_OP_DEF(opexe_6, "length", 1, 1, TST_LIST, OP_LIST_LENGTH )
_OP_DEF(opexe_6, "assq", 2, 2, TST_NONE, OP_ASSQ )
_OP_DEF(opexe_6, "get-closure-code", 1, 1, TST_NONE, OP_GET_CLOSURE )
_OP_DEF(opexe_6, "closure?", 1, 1, TST_NONE, OP_CLOSUREP )
_OP_DEF(opexe_6, "macro?", 1, 1, TST_NONE, OP_MACROP )
_OP_DEF(opexe_6, "*vm-history*", 0, 0, TST_NONE, OP_VM_HISTORY )
_OP_DEF(opexe_0, "length", 1, 1, TST_LIST, OP_LIST_LENGTH )
_OP_DEF(opexe_0, "assq", 2, 2, TST_NONE, OP_ASSQ )
_OP_DEF(opexe_0, "get-closure-code", 1, 1, TST_NONE, OP_GET_CLOSURE )
_OP_DEF(opexe_0, "closure?", 1, 1, TST_NONE, OP_CLOSUREP )
_OP_DEF(opexe_0, "macro?", 1, 1, TST_NONE, OP_MACROP )
_OP_DEF(opexe_0, "*vm-history*", 0, 0, TST_NONE, OP_VM_HISTORY )
#undef _OP_DEF