diff options
author | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-18 13:34:21 +0000 |
---|---|---|
committer | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-18 13:34:21 +0000 |
commit | e16ce300453c228ae139f72c01fcd26ac8e9d9e6 (patch) | |
tree | 4ba8cb87dc5de1c4fb4ed75f8434a1a6bc94ced8 | |
parent | 88458decfd44eff1b2856ff6b957033fd70510b0 (diff) | |
download | gcc-e16ce300453c228ae139f72c01fcd26ac8e9d9e6.tar.gz |
* config/arm/linux-elf.h: Change all instances of
ARM_FLAG_SHORT_BYTES to ARM_FLAG_MMU_TRAPS.
* config/arm/uclinux-elf.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31011 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/arm/linux-elf.h | 4 | ||||
-rw-r--r-- | gcc/config/arm/uclinux-elf.h | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bbe9038409e..27ce7159862 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Sat Dec 18 05:29:29 1999 Scott Bambrough <scottb@netwinder.org> + + * config/arm/linux-elf.h: Change all instances of + ARM_FLAG_SHORT_BYTES to ARM_FLAG_MMU_TRAPS. + * config/arm/uclinux-elf.h: Likewise. + 1999-12-18 Gabriel Dos Reis <gdr@codesourcery.com> * toplev.c (notice, vmessage, v_message_with_file_and_line, diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h index 87fc6784e59..48754bb2dba 100644 --- a/gcc/config/arm/linux-elf.h +++ b/gcc/config/arm/linux-elf.h @@ -27,7 +27,7 @@ Boston, MA 02111-1307, USA. */ #ifndef SUBTARGET_DEFAULT_APCS26 /* Default is to use APCS-32 mode. */ -# define TARGET_DEFAULT (ARM_FLAG_APCS_32 | ARM_FLAG_SHORT_BYTE) +# define TARGET_DEFAULT (ARM_FLAG_APCS_32 | ARM_FLAG_MMU_TRAPS) # ifdef SUBTARGET_OLD_LINKER # define SUBTARGET_EXTRA_LINK_SPEC \ " %{mapcs-26:-m elf32arm26} %{!mapcs-26:-m elf32arm}" @@ -41,7 +41,7 @@ Boston, MA 02111-1307, USA. */ { "mlittle-endian", "mhard-float", "mapcs-32", "mno-thumb-interwork" } # define CPP_APCS_PC_DEFAULT_SPEC "-D__APCS_32__" #else /* default is APCS-26 */ -# define TARGET_DEFAULT (ARM_FLAG_SHORT_BYTE) +# define TARGET_DEFAULT (ARM_FLAG_MMU_TRAPS) # ifdef SUBTARGET_OLD_LINKER # define SUBTARGET_LINK_SPEC \ " %{mapcs-32:-m elf32arm} %{!mapcs-32:-m elf32arm26}" diff --git a/gcc/config/arm/uclinux-elf.h b/gcc/config/arm/uclinux-elf.h index ffa94ed5279..751bdc5ef05 100644 --- a/gcc/config/arm/uclinux-elf.h +++ b/gcc/config/arm/uclinux-elf.h @@ -29,4 +29,4 @@ Boston, MA 02111-1307, USA. */ #define TARGET_VERSION fputs (" (ARM/ELF ucLinux)", stderr); #undef TARGET_DEFAULT -#define TARGET_DEFAULT (ARM_FLAG_APCS_32 | ARM_FLAG_SHORT_BYTE | ARM_FLAG_SINGLE_PIC_BASE) +#define TARGET_DEFAULT (ARM_FLAG_APCS_32 | ARM_FLAG_MMU_TRAPS | ARM_FLAG_SINGLE_PIC_BASE) |