diff options
author | Jeff Law <law@gcc.gnu.org> | 1996-02-01 19:50:29 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1996-02-01 19:50:29 -0700 |
commit | 2029eca3a3d8212ca04c7cdb0015a397cc3e5b97 (patch) | |
tree | fdcdde5345b0c56e6948e1ca6df5ac055236e68c | |
parent | 79a8aaa8da6a4418f3b63bf90b62f95123779825 (diff) | |
download | gcc-2029eca3a3d8212ca04c7cdb0015a397cc3e5b97.zip gcc-2029eca3a3d8212ca04c7cdb0015a397cc3e5b97.tar.gz gcc-2029eca3a3d8212ca04c7cdb0015a397cc3e5b97.tar.bz2 |
pa-pro.h (TARGET_DEFAULT): Turn on TARGET_SOFT_FLOAT by default for all pro targets.
* pa-pro.h (TARGET_DEFAULT): Turn on TARGET_SOFT_FLOAT by
default for all pro targets.
* t-pro: Delete all multilib references.
From-SVN: r11156
-rw-r--r-- | gcc/config/pa/pa-pro.h | 4 | ||||
-rw-r--r-- | gcc/config/pa/t-pro | 9 |
2 files changed, 2 insertions, 11 deletions
diff --git a/gcc/config/pa/pa-pro.h b/gcc/config/pa/pa-pro.h index 0bbc44a..ce8388b 100644 --- a/gcc/config/pa/pa-pro.h +++ b/gcc/config/pa/pa-pro.h @@ -18,8 +18,8 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef TARGET_DEFAULT -/* JUMP_IN_DELAY + PORTABLE_RUNTIME + GAS + NO_SPAEC_REGS */ -#define TARGET_DEFAULT (4 + 8 + 64 + 128) +/* JUMP_IN_DELAY + PORTABLE_RUNTIME + GAS + NO_SPACE_REGS + SOFT_FLOAT */ +#define TARGET_DEFAULT (4 + 8 + 64 + 128 + 256) #endif /* Global constructor and destructor support. */ diff --git a/gcc/config/pa/t-pro b/gcc/config/pa/t-pro index 5541e4b..af77bd8 100644 --- a/gcc/config/pa/t-pro +++ b/gcc/config/pa/t-pro @@ -19,12 +19,3 @@ fp-bit.c: $(srcdir)/config/fp-bit.c lib2funcs.asm: $(srcdir)/config/pa/lib2funcs.asm rm -f lib2funcs.asm cp $(srcdir)/config/pa/lib2funcs.asm . - -# Build the libraries for both hard and soft floating point - -MULTILIB_OPTIONS=msoft-float -MULTILIB_DIRNAMES=soft-float -MULTILIB_MATCHES= - -LIBGCC = stmp-multilib -INSTALL_LIBGCC = install-multilib |