diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-06-24 02:07:17 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-06-24 02:07:17 +0000 |
commit | 7e98d7f2bf21799af2cf318f06fa15d239745ad0 (patch) | |
tree | a8a905ce7bc03b1d1cbd3f47fee06ba94ebd7601 /gcc/config/sparc/sp64-elf.h | |
parent | ad91f3ed1ffc499b45732613dd64cc9b2765d29e (diff) | |
download | gcc-7e98d7f2bf21799af2cf318f06fa15d239745ad0.tar.gz |
(LINK_SPEC): Fix typo.
(PTRDIFF_TYPE): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7554 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/sparc/sp64-elf.h')
-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 6c518b34fa2..487876f4901 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 |