diff options
author | Alice Frosi <afrosi@redhat.com> | 2023-02-21 13:14:43 +0100 |
---|---|---|
committer | Alice Frosi <afrosi@redhat.com> | 2023-02-21 13:14:43 +0100 |
commit | 061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc (patch) | |
tree | a99c4d42c828a969007acfaf7f126e8f5fa3fbec | |
parent | 0939f0b010b2b4f345575a0adcaadb719d5a0164 (diff) | |
download | seitan-061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc.tar seitan-061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc.tar.gz seitan-061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc.tar.bz2 seitan-061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc.tar.lz seitan-061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc.tar.xz seitan-061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc.tar.zst seitan-061659cdc33ce4d2b0f2fffa8ae09f4b84b57edc.zip |
gluten: add reference fields
-rw-r--r-- | gluten.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -53,14 +53,16 @@ enum action_type { }; enum value_type { - IMMEDIATE, - REFERENCE, + IMMEDIATE, + REFERENCE, }; struct act_call { long nr; + bool has_ret; void *args[6]; struct act_context context; + uint16_t ret_off; }; struct act_block { |