From 9730876c1624d2f98d4b96ec2c28c47e933388b0 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 24 Jun 1994 02:07:17 +0000 Subject: [PATCH] (LINK_SPEC): Fix typo. (PTRDIFF_TYPE): Likewise. From-SVN: r7554 --- gcc/config/sparc/sp64-elf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/sparc/sp64-elf.h b/gcc/config/sparc/sp64-elf.h index 6c518b34fa21..487876f4901b 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 -- 2.47.2