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 /cgconst.h | |
parent | add absR, negI, unsigned compare, divU, remU and faster not (diff) |
implement absR, negI and faster not for the PowerPC
Diffstat (limited to 'cgconst.h')
-rw-r--r-- | cgconst.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -15,11 +15,14 @@ enum { GMOVEMI, GMUL, GMUL_O, GOR, GREGISTER, GSTORE, GSTORE_R, GSTORE_B_X, GSTORE_X, GSUB, GSUB_O, GTEST_O, GEXIT_IF +#if defined (I486) || defined (G_POWER) + ,GFABS, GNEG, GNOT +#endif #ifdef G_POWER ,GCREATE_S, GUMULH #endif #ifdef I486 - ,GDIVU, GREMU, GFABS, GNEG, GNOT + ,GDIVU, GREMU #endif }; |