diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-29 20:34:38 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-29 20:34:38 +0200 |
commit | 4a023207acdb2b49f5bff02b300b4c6698e29269 (patch) | |
tree | 3eef0fd07deb961c930b02dad74a2b2bbbcf3bee /gcc/target-def.h | |
parent | 5fad1c24dba769d854f9c3a7d37c359ec84c39eb (diff) | |
download | gcc-4a023207acdb2b49f5bff02b300b4c6698e29269.zip gcc-4a023207acdb2b49f5bff02b300b4c6698e29269.tar.gz gcc-4a023207acdb2b49f5bff02b300b4c6698e29269.tar.bz2 |
target-def.h: Remove usage of OBJECT_FORMAT_ROSE.
* target-def.h: Remove usage of OBJECT_FORMAT_ROSE.
* system.h: Poison OBJ_FORMAT_ROSE.
* doc/tm.texi (Macros for Initialization): Remove documentatin of
OBJECT_FORMAT_ROSE.
* config/rs6000/lynx.h: Remove undef of OBJECT_FORMAT_ROSE.
* collect2.c: Remove usage of OBJECT_FORMAT_ROSE.
From-SVN: r68678
Diffstat (limited to 'gcc/target-def.h')
-rw-r--r-- | gcc/target-def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/target-def.h b/gcc/target-def.h index 3197022..e3c4df1 100644 --- a/gcc/target-def.h +++ b/gcc/target-def.h @@ -40,7 +40,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define TARGET_ASM_ALIGNED_TI_OP NULL /* GAS and SYSV4 assemblers accept these. */ -#if defined (OBJECT_FORMAT_ELF) || defined (OBJECT_FORMAT_ROSE) +#if defined (OBJECT_FORMAT_ELF) #define TARGET_ASM_UNALIGNED_HI_OP "\t.2byte\t" #define TARGET_ASM_UNALIGNED_SI_OP "\t.4byte\t" #define TARGET_ASM_UNALIGNED_DI_OP "\t.8byte\t" @@ -50,7 +50,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define TARGET_ASM_UNALIGNED_SI_OP NULL #define TARGET_ASM_UNALIGNED_DI_OP NULL #define TARGET_ASM_UNALIGNED_TI_OP NULL -#endif /* OBJECT_FORMAT_ELF || OBJECT_FORMAT_ROSE */ +#endif /* OBJECT_FORMAT_ELF */ #define TARGET_ASM_INTEGER default_assemble_integer |