diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2018-05-11 14:10:49 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2018-05-11 14:10:49 (GMT) | 
| commit | eaf46c79d5b1db06f1f1f7da17a37ec007af2d92 (patch) | |
| tree | 63126e13d1524cac5259d02a5df281c6055075dd /plugins/dalvik/operands | |
| parent | b24aca86f0a096730fa8df440f7493556b39ae46 (diff) | |
Implemented a singleton system for ARMv7 registers.
Diffstat (limited to 'plugins/dalvik/operands')
| -rw-r--r-- | plugins/dalvik/operands/register.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dalvik/operands/register.c b/plugins/dalvik/operands/register.c index 79d8756..71da97f 100644 --- a/plugins/dalvik/operands/register.c +++ b/plugins/dalvik/operands/register.c @@ -34,7 +34,7 @@ struct _GDalvikRegisterOperand  {      GArchOperand parent;                    /* Instance parente            */ -    const GDalvikRegister *reg;             /* Registre représenté         */ +    GDalvikRegister *reg;                   /* Registre représenté         */      bool is_written;                        /* Changement de contenu       */  };  | 
