diff options
author | Bas Lijnse | 2012-01-02 13:50:21 +0000 |
---|---|---|
committer | Bas Lijnse | 2012-01-02 13:50:21 +0000 |
commit | b8b03fadf7f87872de913c8e459e096caaef0cbc (patch) | |
tree | 9248b8950dd6e5a917eba5a6ff0fbc8e1e145f26 | |
parent | port unsigned divide and remainder to 64 bit processor (diff) |
Fixed behavior of pushLc on MacOSX
-rw-r--r-- | cgcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5514,7 +5514,7 @@ void code_pushLc (char *c_function_name) INSTRUCTION_GRAPH graph_1; LABEL *label; -#if (defined (sparc) && !defined (SOLARIS)) || (defined (I486) && !defined (G_AI64) && !defined (LINUX_ELF)) || (defined (G_POWER) && !defined (LINUX_ELF)) || defined (MACH_O) +#if (defined (sparc) && !defined (SOLARIS)) || (defined (I486) && !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) |