diff options
author | John van Groningen | 2015-09-17 11:54:02 +0000 |
---|---|---|
committer | John van Groningen | 2015-09-17 11:54:02 +0000 |
commit | 9bcf27e20d548d128d10c7cb79b3f1bd26c27628 (patch) | |
tree | a8ef336088675fa201ddd762f2bdd4acb607e813 | |
parent | (no commit message) (diff) |
fix pushLc for Mac OS X 64 (broken by previous commit)
-rw-r--r-- | cgcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5839,7 +5839,7 @@ void code_pushLc (char *c_function_name) INSTRUCTION_GRAPH graph_1; LABEL *label; -#if (defined (sparc) && !defined (SOLARIS)) || ((defined (I486) || defined (ARM)) && !defined (G_AI64) && !defined (LINUX_ELF)) || (defined (G_POWER) && !defined (LINUX_ELF)) || defined (MACH_O) +#if (defined (sparc) && !defined (SOLARIS)) || ((defined (I486) || defined (ARM)) && !defined (G_AI64) && !defined (LINUX_ELF)) || (defined (G_POWER) && !defined (LINUX_ELF)) || defined (MACH_O) || defined (MACH_O64) char label_name [202]; # if defined (G_POWER) && !defined (MACH_O) |