diff options
author | Mark Mitchell <mark@markmitchell.com> | 1998-06-10 13:17:56 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1998-06-10 13:17:56 +0000 |
commit | 748b909e126096319530e14c3dd33546bfdc7391 (patch) | |
tree | 98b078d34b6d503e8ad1201fe8a88de0241be01e /gcc | |
parent | e061d1ce147f95d1b6b5dede222a4fbd3ffd1194 (diff) | |
download | gcc-748b909e126096319530e14c3dd33546bfdc7391.zip gcc-748b909e126096319530e14c3dd33546bfdc7391.tar.gz gcc-748b909e126096319530e14c3dd33546bfdc7391.tar.bz2 |
* mips/mips.c: Remove -mabi=o32 and -mabi=n64.
From-SVN: r20417
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 678206b..9f799b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Jun 10 13:08:41 1998 Mark Mitchell <mark@markmitchell.com> + + * mips/mips.c: Remove -mabi=o32 and -mabi=n64. + Wed Jun 10 13:41:23 1998 Dave Brolley <brolley@cygnus.com> * cppmain.c (fatal): New function. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 9bda30f..f5faa94 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -208,7 +208,7 @@ int mips_abi; /* Strings to hold which cpu and instruction set architecture to use. */ char *mips_cpu_string; /* for -mcpu=<xxx> */ char *mips_isa_string; /* for -mips{1,2,3,4} */ -char *mips_abi_string; /* for -mabi={o32,32,n32,n64,64,eabi} */ +char *mips_abi_string; /* for -mabi={32,n32,64,eabi} */ /* Whether we are generating mips16 code. This is a synonym for TARGET_MIPS16, and exists for use as an attribute. */ @@ -4031,13 +4031,11 @@ override_options () /* Get the ABI to use. Currently this code is only used for Irix 6. */ if (mips_abi_string == (char *) 0) mips_abi = MIPS_ABI_DEFAULT; - else if (! strcmp (mips_abi_string, "32") - || ! strcmp (mips_abi_string, "o32")) + else if (! strcmp (mips_abi_string, "32")) mips_abi = ABI_32; else if (! strcmp (mips_abi_string, "n32")) mips_abi = ABI_N32; - else if (! strcmp (mips_abi_string, "64") - || ! strcmp (mips_abi_string, "n64")) + else if (! strcmp (mips_abi_string, "64")) mips_abi = ABI_64; else if (! strcmp (mips_abi_string, "eabi")) mips_abi = ABI_EABI; |