summaryrefslogtreecommitdiff
path: root/cglin.c
diff options
context:
space:
mode:
authorJohn van Groningen2011-02-01 14:05:38 +0000
committerJohn van Groningen2011-02-01 14:05:38 +0000
commite8a72185b6cd11a58e00d8f8f63bf852902b36ef (patch)
tree2a634aa29475e6d6f2b10ca8a871b659b0f3e608 /cglin.c
parentuse .quad instead of .long and fix movsxd and remainder instructions (diff)
port to Mac OS X (AMD64)
Diffstat (limited to 'cglin.c')
-rw-r--r--cglin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cglin.c b/cglin.c
index ee178f0..fd25d59 100644
--- a/cglin.c
+++ b/cglin.c
@@ -8575,7 +8575,7 @@ static void linearize_graph (INSTRUCTION_GRAPH graph,ADDRESS *ad_p)
{
register int reg_1;
-#ifdef I486
+#if defined (I486) && !defined (MACH_O64)
if (graph->node_count==1){
ad_p->ad_mode=P_DESCRIPTOR_NUMBER;
if (graph->inode_arity==1)
@@ -8617,7 +8617,7 @@ static void linearize_graph (INSTRUCTION_GRAPH graph,ADDRESS *ad_p)
ad_p->ad_count_p=&graph->node_count;
return;
-#ifdef I486
+#if defined (I486) && !defined (MACH_O64)
}
#endif
}