summaryrefslogtreecommitdiff
path: root/cgcodep.h
diff options
context:
space:
mode:
authorJohn van Groningen2004-07-12 15:49:03 +0000
committerJohn van Groningen2004-07-12 15:49:03 +0000
commitcb389659f3257f911cc1347cff5943c6743fec16 (patch)
tree38645d729960b57d75e3508600f8741d84caa089 /cgcodep.h
parentadd absR, negI, unsigned compare, divU, remU and faster not (diff)
implement absR, negI and faster not for the PowerPC
Diffstat (limited to 'cgcodep.h')
-rw-r--r--cgcodep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cgcodep.h b/cgcodep.h
index a54569e..aa7ab92 100644
--- a/cgcodep.h
+++ b/cgcodep.h
@@ -15,7 +15,7 @@
# define ULONG unsigned long
#endif
-#ifdef I486
+#if defined (I486) || defined (G_POWER)
void code_absR (void);
#endif
void code_acosR (VOID);
@@ -153,7 +153,7 @@ void code_mulI (VOID);
void code_mulIo (VOID);
#endif
void code_mulR (VOID);
-#ifdef I486
+#if defined (I486) || defined (G_POWER)
void code_negI (void);
#endif
void code_negR (VOID);