summaryrefslogtreecommitdiff
path: root/src/arch/immediate.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-04-29 09:53:28 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-04-29 09:53:28 (GMT)
commitb16071a35adaf95d5e67b0dd984e9ba9d7ba28f9 (patch)
tree10470449f230593ea62f696e30e647a1c8d95ed2 /src/arch/immediate.h
parentaead324676d997c30aac2851f4a37125db195d3e (diff)
Improved the behavior of immediate operands display.
Diffstat (limited to 'src/arch/immediate.h')
-rw-r--r--src/arch/immediate.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/arch/immediate.h b/src/arch/immediate.h
index 450ceef..9becf91 100644
--- a/src/arch/immediate.h
+++ b/src/arch/immediate.h
@@ -97,9 +97,15 @@ uint64_t g_imm_operand_get_raw_value(const GImmOperand *);
void g_imm_operand_set_value(GImmOperand **, MemoryDataSize, uint64_t, GShareContainer *);
/* Précise si des zéro doivent compléter l'affichage ou non. */
+void g_imm_operand_pad_by_default(GImmOperand **, bool, GShareContainer *);
+
+/* Indique si une valeur est complétée par des zéros par défaut. */
+bool g_imm_operand_does_padding_by_default(const GImmOperand *);
+
+/* Précise si des zéro doivent compléter l'affichage ou non. */
void g_imm_operand_pad(GImmOperand **, bool, GShareContainer *);
-/* Indique le signe d'une valeur immédiate. */
+/* Indique si une valeur est complétée par des zéros. */
bool g_imm_operand_does_padding(const GImmOperand *);
/* Définit le format textuel par défaut de la valeur. */