1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

scm_rtl_op_* -> scm_op_*

* libguile/instructions.h (scm_opcode): Rename from scm_rtl_opcode.
  Rename opcodes from scm_rtl_op_* to scm_op_*.

* libguile/continuations.c:
* libguile/control.c:
* libguile/foreign.c:
* libguile/gsubr.c:
* libguile/instructions.c:
* libguile/vm.c: Adapt.
This commit is contained in:
Andy Wingo 2013-11-19 20:31:21 +01:00
parent 1b780c134b
commit 3fe96dd808
7 changed files with 42 additions and 42 deletions

View file

@ -22,9 +22,9 @@
#include <libguile.h>
#include <libguile/vm-operations.h>
enum scm_rtl_opcode
enum scm_opcode
{
#define ENUM(opcode, tag, name, meta) scm_rtl_op_##tag = opcode,
#define ENUM(opcode, tag, name, meta) scm_op_##tag = opcode,
FOR_EACH_VM_OPERATION(ENUM)
#undef ENUM
};