diff options
author | John van Groningen | 2011-02-01 14:05:38 +0000 |
---|---|---|
committer | John van Groningen | 2011-02-01 14:05:38 +0000 |
commit | e8a72185b6cd11a58e00d8f8f63bf852902b36ef (patch) | |
tree | 2a634aa29475e6d6f2b10ca8a871b659b0f3e608 /cglin.c | |
parent | use .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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } |