diff options
author | John van Groningen | 2016-04-15 09:11:29 +0000 |
---|---|---|
committer | John van Groningen | 2016-04-15 09:11:29 +0000 |
commit | 5e13e2c1d26e23090ec5b8c60b8cf3a2d38844e2 (patch) | |
tree | 1853114591519fadc67048e9a74e46356f73d640 | |
parent | generate a word instead of a byte for abc instruction "instruction" for the ARM (diff) |
generate object code instead of assembly on the Mac
-rw-r--r-- | cg.c | 2 | ||||
-rw-r--r-- | cgcode.c | 4 | ||||
-rw-r--r-- | cginstructions.c | 4 |
3 files changed, 3 insertions, 7 deletions
@@ -19,7 +19,7 @@ #include <stdlib.h> #include <stdio.h> -#if ! (defined (M68000) && defined (SUN)) && !defined (MACH_O64) +#if ! (defined (M68000) && defined (SUN)) # define GENERATE_OBJECT_FILE #endif @@ -85,9 +85,7 @@ #define for_l(v,l,n) for(v=(l);v!=NULL;v=v->n) -#ifndef MACH_O64 -# define GEN_OBJ -#endif +#define GEN_OBJ #ifdef NEW_DESCRIPTORS # ifdef G_A64 diff --git a/cginstructions.c b/cginstructions.c index da9667b..4c77c6d 100644 --- a/cginstructions.c +++ b/cginstructions.c @@ -39,9 +39,7 @@ #if defined (THREAD32) || defined (THREAD64) # include "cgiconst.h" #endif -#ifndef MACH_O64 -# define GEN_OBJ -#endif +#define GEN_OBJ #define LTEXT 0 #define LDATA 1 |