diff options
author | John van Groningen | 2004-07-14 15:14:31 +0000 |
---|---|---|
committer | John van Groningen | 2004-07-14 15:14:31 +0000 |
commit | 3c555f116c705891e8a94e362746b16674471076 (patch) | |
tree | 022969f061f76809d4cce16285768c46f06bf9f6 /cgopt.c | |
parent | implement absR, negI and faster not for the PowerPC (diff) |
support neg and not in the register allocator
Diffstat (limited to 'cgopt.c')
-rw-r--r-- | cgopt.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1586,6 +1586,9 @@ IF_G_RISC (case IADDI: case ILSLI:) #if defined (M68000) || defined (G_POWER) case IEXTB: #endif +#if defined (I486) || defined (G_POWER) + case INEG: case INOT: +#endif /* case IJMP: case IJSR: */ use_parameter (&instruction->instruction_parameters[0]); break; @@ -3878,6 +3881,9 @@ IF_G_RISC (case IADDI: case ILSLI:) #if defined (M68000) || defined (G_POWER) case IEXTB: #endif +#if defined (I486) || defined (G_POWER) + case INEG: case INOT: +#endif instruction_usedef (instruction); break; case IFSEQ: case IFSGE: case IFSGT: case IFSLE: case IFSLT: case IFSNE: |