summaryrefslogtreecommitdiff
path: root/src/arch/processor-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-10-07 21:18:39 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-10-07 21:18:39 (GMT)
commitfe3ac685849b69d87ad536e80d6f31d08c593eac (patch)
tree7522f5cf0a259656c6aff47a39b442001fd7911a /src/arch/processor-int.h
parentf9c4cfc72cd8d7eb08ded8287fc5af1497567f8b (diff)
Introduced code coverages to reduce search time.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@588 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/processor-int.h')
-rw-r--r--src/arch/processor-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/processor-int.h b/src/arch/processor-int.h
index fcd7a52..19076a2 100644
--- a/src/arch/processor-int.h
+++ b/src/arch/processor-int.h
@@ -63,14 +63,14 @@ typedef GArchInstruction * (* disass_instr_fc) (const GArchProcessor *, GProcCon
/* Couverture d'un groupe d'instructions */
-typedef struct _instr_coverage
+struct _instr_coverage
{
mrange_t range; /* Couverture du groupement */
size_t start; /* Indice de départ */
size_t count; /* Quantité d'inclusions */
-} instr_coverage;
+};