From: Kaveh R. Ghazi Date: Wed, 28 Nov 2001 02:39:21 +0000 (+0000) Subject: defaults.h (UNALIGNED_SHORT_ASM_OP, [...]): Also provide defaults when we have OBJECT... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59a64a46e0b90adb1dce2d19c42630edcd6374d1;p=gcc.git defaults.h (UNALIGNED_SHORT_ASM_OP, [...]): Also provide defaults when we have OBJECT_FORMAT_ROSE. * defaults.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP, UNALIGNED_DOUBLE_INT_ASM_OP): Also provide defaults when we have OBJECT_FORMAT_ROSE. From-SVN: r47396 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6a87c32bc61..64f0a266abc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-11-27 Kaveh R. Ghazi + + * defaults.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP, + UNALIGNED_DOUBLE_INT_ASM_OP): Also provide defaults when we have + OBJECT_FORMAT_ROSE. + 2001-11-28 Hans-Peter Nilsson * config/cris/cris.c: Tweak spacing for prototypes. diff --git a/gcc/defaults.h b/gcc/defaults.h index 816afe8744a..f8dd2b34c6f 100644 --- a/gcc/defaults.h +++ b/gcc/defaults.h @@ -401,7 +401,7 @@ do { \ #endif /* GAS and SYSV4 assemblers accept these. */ -#ifdef OBJECT_FORMAT_ELF +#if defined (OBJECT_FORMAT_ELF) || defined (OBJECT_FORMAT_ROSE) #ifndef UNALIGNED_SHORT_ASM_OP #define UNALIGNED_SHORT_ASM_OP "\t.2byte\t" #endif @@ -411,7 +411,7 @@ do { \ #ifndef UNALIGNED_DOUBLE_INT_ASM_OP #define UNALIGNED_DOUBLE_INT_ASM_OP "\t.8byte\t" #endif -#endif /* OBJECT_FORMAT_ELF */ +#endif /* OBJECT_FORMAT_ELF || OBJECT_FORMAT_ROSE */ #ifndef ASM_BYTE_OP #define ASM_BYTE_OP "\t.byte\t"