diff options
author | Doug Evans <dje@gnu.org> | 1994-06-24 02:07:17 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-06-24 02:07:17 +0000 |
commit | 9730876c1624d2f98d4b96ec2c28c47e933388b0 (patch) | |
tree | a8a905ce7bc03b1d1cbd3f47fee06ba94ebd7601 | |
parent | a32034654e77ec19b8c0245d6dbebb06082f0612 (diff) | |
download | gcc-9730876c1624d2f98d4b96ec2c28c47e933388b0.zip gcc-9730876c1624d2f98d4b96ec2c28c47e933388b0.tar.gz gcc-9730876c1624d2f98d4b96ec2c28c47e933388b0.tar.bz2 |
(LINK_SPEC): Fix typo.
(PTRDIFF_TYPE): Likewise.
From-SVN: r7554
-rw-r--r-- | gcc/config/sparc/sp64-elf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/sparc/sp64-elf.h b/gcc/config/sparc/sp64-elf.h index 6c518b3..487876f 100644 --- a/gcc/config/sparc/sp64-elf.h +++ b/gcc/config/sparc/sp64-elf.h @@ -67,7 +67,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* This is taken from sol2.h. */ #undef LINK_SPEC #define LINK_SPEC "\ -%{!nostdlib:%{!r*:%{!e*:-e _start}}} +%{!nostdlib:%{!r*:%{!e*:-e _start}}} \ %{h*} %{V} %{v:%{!V:-V}} \ %{b} %{Wl,*:%*} \ %{static:-dn -Bstatic} \ @@ -86,7 +86,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef PTRDIFF_TYPE #define PTRDIFF_TYPE \ (POINTER_SIZE == 64 ? "long long int" \ - : POINTER_SIZE == 32 && LONG_TYPE_SIZE == 32 ? "long" \ + : POINTER_SIZE == 32 && LONG_TYPE_SIZE == 32 ? "long int" \ : 0 /*abort*/) #undef SIZE_TYPE |