diff options
author | John van Groningen | 2004-07-12 15:49:03 +0000 |
---|---|---|
committer | John van Groningen | 2004-07-12 15:49:03 +0000 |
commit | cb389659f3257f911cc1347cff5943c6743fec16 (patch) | |
tree | 38645d729960b57d75e3508600f8741d84caa089 /cgopt.c | |
parent | add absR, negI, unsigned compare, divU, remU and faster not (diff) |
implement absR, negI and faster not for the PowerPC
Diffstat (limited to 'cgopt.c')
-rw-r--r-- | cgopt.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -419,7 +419,7 @@ IF_G_POWER ( case IUMULH: ) #if !defined (G_POWER) case IFSQRT: #endif -#ifdef I486 +#if defined (G_POWER) || defined (I486) case IFABS: #endif return 8; @@ -1574,7 +1574,7 @@ IF_G_POWER ( case IUMULH: ) #if !defined (G_POWER) case IFSQRT: #endif -#ifdef I486 +#if defined (G_POWER) || defined (I486) case IFABS: #endif IF_G_SPARC (case IFMOVEHI: case IFMOVELO:) @@ -3857,7 +3857,7 @@ IF_G_POWER (case ICMPLW:) #if !defined (G_POWER) case IFSQRT: #endif -#ifdef I486 +#if defined (G_POWER) || defined (I486) case IFABS: #endif IF_G_SPARC (case IFMOVEHI: case IFMOVELO:) |