summaryrefslogtreecommitdiff
path: root/src/arch/register-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-10-01 20:44:39 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-10-01 20:44:39 (GMT)
commitada6b756efd6ca109f6c46aa4d3eb11c17ad6b84 (patch)
treeef182c00ffb3881f6537e96dfa07acb875ac0846 /src/arch/register-int.h
parent15c0cc127f0f4551c88de6c0d46b7d38f4b3ed4b (diff)
Prepared the ground for the ARMv7 architecture.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@408 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/register-int.h')
-rw-r--r--src/arch/register-int.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/arch/register-int.h b/src/arch/register-int.h
index 75f0ce3..fe9db8c 100644
--- a/src/arch/register-int.h
+++ b/src/arch/register-int.h
@@ -21,8 +21,8 @@
*/
-#ifndef _ARCH_ARCH_REGISTER_INT_H
-#define _ARCH_ARCH_REGISTER_INT_H
+#ifndef _ARCH_REGISTER_INT_H
+#define _ARCH_REGISTER_INT_H
#include "register.h"
@@ -51,12 +51,6 @@ struct _GArchRegister
{
GObject parent; /* A laisser en premier */
- reg_hash_fc hash; /* Production d'empreinte */
- reg_compare_fc compare; /* Comparaison de registres */
- reg_print_fc print; /* Impression du registre */
- reg_is_base_pointer_fc is_bp; /* Correspondance avec ebp */
- reg_is_stack_pointer_fc is_sp; /* Correspondance avec esp */
-
};
@@ -65,8 +59,14 @@ struct _GArchRegisterClass
{
GObjectClass parent; /* A laisser en premier */
+ reg_hash_fc hash; /* Production d'empreinte */
+ reg_compare_fc compare; /* Comparaison de registres */
+ reg_print_fc print; /* Impression du registre */
+ reg_is_base_pointer_fc is_bp; /* Correspondance avec ebp */
+ reg_is_stack_pointer_fc is_sp; /* Correspondance avec esp */
+
};
-#endif /* _ARCH_ARCH_REGISTER_INT_H */
+#endif /* _ARCH_REGISTER_INT_H */