summaryrefslogtreecommitdiff
path: root/src/analysis/block-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/block-int.h')
-rw-r--r--src/analysis/block-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/analysis/block-int.h b/src/analysis/block-int.h
index f89fa3c..e194ace 100644
--- a/src/analysis/block-int.h
+++ b/src/analysis/block-int.h
@@ -29,6 +29,9 @@
+/* Etablit la liste de tous les blocs présents. */
+typedef void (* list_all_blocks_fc) (const GInstrBlock *, GInstrBlock ***, size_t *);
+
/* Fournit les différents accès aux registres. */
typedef const reg_access * (* list_regs_accesses_fc) (const GInstrBlock *, size_t *);
@@ -39,6 +42,7 @@ struct _GInstrBlock
{
GObject parent; /* A laisser en premier */
+ list_all_blocks_fc list_blocks; /* Liste de tous les blocs */
list_regs_accesses_fc list_regs; /* Liste des accès registres */
};