diff options
author | Oxore <oxore@protonmail.com> | 2023-05-27 18:10:42 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-05-27 18:12:31 +0300 |
commit | a4841d2a593f9efed1cb116137034c307c1d74bc (patch) | |
tree | ee0e850b39f6b7dfe1532835409d88e2e33156ef /disasm.h | |
parent | edfe901ba751f4fcdf287102037eb36bf28cfa2a (diff) |
Impl -fshort-ref-local-labels, refactor feature parsing
Diffstat (limited to 'disasm.h')
-rw-r--r-- | disasm.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -299,6 +299,7 @@ struct Arg { size_t bufsz, bool imm_as_hex = false, RefKindMask ref_kinds = 0, + const char *label = nullptr, uint32_t self_addr = 0, uint32_t ref_addr = 0) const; }; @@ -355,6 +356,8 @@ struct Op { FILE *, const char *indent, RefKindMask ref_kinds = 0, + const char *ref1_label = nullptr, + const char *ref2_label = nullptr, uint32_t self_addr = 0, uint32_t ref1_addr = 0, uint32_t ref2_addr = 0) const; |