diff options
-rw-r--r-- | gas/config/obj-bout.c | 6 | ||||
-rw-r--r-- | gas/config/obj-bout.h | 6 | ||||
-rw-r--r-- | gas/config/te-ic960.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/gas/config/obj-bout.c b/gas/config/obj-bout.c index abfdaa8..314edcc 100644 --- a/gas/config/obj-bout.c +++ b/gas/config/obj-bout.c @@ -459,13 +459,13 @@ char **where; { symbolS *symbolP; -#ifdef CROSS_ASSEMBLE +#ifdef CROSS_COMPILE /* Gotta do md_ byte-ordering stuff for string_byte_count first - KWK */ md_number_to_chars(*where, string_byte_count, sizeof(string_byte_count)); *where += sizeof(string_byte_count); -#else /* CROSS_ASSEMBLE */ +#else /* CROSS_COMPILE */ append(where, (char *) &string_byte_count, (unsigned long) sizeof(string_byte_count)); -#endif /* CROSS_ASSEMBLE */ +#endif /* CROSS_COMPILE */ for(symbolP = symbol_rootP; symbolP; symbolP = symbol_next(symbolP)) { if(S_GET_NAME(symbolP)) diff --git a/gas/config/obj-bout.h b/gas/config/obj-bout.h index fc95a35..5ba18f1 100644 --- a/gas/config/obj-bout.h +++ b/gas/config/obj-bout.h @@ -60,9 +60,9 @@ to the Free Software Foundation, 675 Mass Ave, Cambridge, MA #include "targ-cpu.h" /* bout uses host byte order for headers */ -#ifdef CROSS_ASSEMBLE -#undef CROSS_ASSEMBLE -#endif /* CROSS_ASSEMBLE */ +#ifdef CROSS_COMPILE +#undef CROSS_COMPILE +#endif /* CROSS_COMPILE */ /* We want \v. */ #define BACKSLASH_V 1 diff --git a/gas/config/te-ic960.h b/gas/config/te-ic960.h index 15c3064..165a780 100644 --- a/gas/config/te-ic960.h +++ b/gas/config/te-ic960.h @@ -8,9 +8,9 @@ #define TE_IC960 1 /* intel uses host byte order for headers */ -#ifdef CROSS_ASSEMBLE -#undef CROSS_ASSEMBLE -#endif /* CROSS_ASSEMBLE */ +#ifdef CROSS_COMPILE +#undef CROSS_COMPILE +#endif /* CROSS_COMPILE */ #define OBJ_COFF_OMIT_OPTIONAL_HEADER #define LOCAL_LABEL(name) ( (name[0] =='L') \ |