diff options
author | Jeff Law <law@gcc.gnu.org> | 1996-03-07 10:38:08 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1996-03-07 10:38:08 -0700 |
commit | ddaf4c9114124df0305df1eeb8e1452b42c3c771 (patch) | |
tree | ffccde381d812672b7bdf0ef4ab8ef214a6b0013 /gcc/config/pa/t-pro | |
parent | 9e9b00600ba508de8a86b1676a7e7be51828c566 (diff) | |
download | gcc-ddaf4c9114124df0305df1eeb8e1452b42c3c771.tar.gz |
lib2funcs.asm: Remove entry/exit routines.
* lib2funcs.asm: Remove entry/exit routines. Move them into...
* ee.asm: New file. Entry/exit code.
* ee_fp.asm: New file. Entry/exit code with frame pointer.
* t-pa: Corresponding changes.
* t-pro: Corresponding changes.
From-SVN: r11491
Diffstat (limited to 'gcc/config/pa/t-pro')
-rw-r--r-- | gcc/config/pa/t-pro | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/config/pa/t-pro b/gcc/config/pa/t-pro index f45fca5b984..f40b2e4e4d7 100644 --- a/gcc/config/pa/t-pro +++ b/gcc/config/pa/t-pro @@ -7,7 +7,7 @@ LIBGCC1_TEST = ADA_CFLAGS=-mdisable-indexing -LIB2FUNCS_EXTRA=fp-bit.c dp-bit.c lib2funcs.asm +LIB2FUNCS_EXTRA=fp-bit.c dp-bit.c lib2funcs.asm ee.asm ee_fp.asm dp-bit.c: $(srcdir)/config/fp-bit.c cat $(srcdir)/config/fp-bit.c > dp-bit.c @@ -20,6 +20,14 @@ lib2funcs.asm: $(srcdir)/config/pa/lib2funcs.asm rm -f lib2funcs.asm cp $(srcdir)/config/pa/lib2funcs.asm . +ee.asm: $(srcdir)/config/pa/ee.asm + rm -f ee.asm + cp $(srcdir)/config/pa/ee.asm . + +ee_fp.asm: $(srcdir)/config/pa/ee_fp.asm + rm -f ee_fp.asm + cp $(srcdir)/config/pa/ee_fp.asm . + # Build the libraries for both speed and space optimizations MULTILIB_OPTIONS=mspace |