diff options
author | Richard Stallman <rms@gnu.org> | 1992-06-29 17:50:38 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-06-29 17:50:38 +0000 |
commit | 1a107c5597695bf259ee46e3d9cb49ea2476a497 (patch) | |
tree | cae9bdc4d2b9aa151ac73ce9a171a4d20b6c97e3 /gcc | |
parent | 10d1b70f28f99210d3a751337c0d1bfdf3f79fe2 (diff) | |
download | gcc-1a107c5597695bf259ee46e3d9cb49ea2476a497.zip gcc-1a107c5597695bf259ee46e3d9cb49ea2476a497.tar.gz gcc-1a107c5597695bf259ee46e3d9cb49ea2476a497.tar.bz2 |
(SIZE_TYPE): Defined.
(LINK_LIBGCC_SPECIAL): Fix typo.
From-SVN: r1338
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/ns32k/sequent.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/ns32k/sequent.h b/gcc/config/ns32k/sequent.h index 467d99d..990ce85 100644 --- a/gcc/config/ns32k/sequent.h +++ b/gcc/config/ns32k/sequent.h @@ -44,7 +44,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* gcc should find libgcc.a itself, not ask linker to do so. */ -3define LINK_LIBGCC_SPECIAL +#define LINK_LIBGCC_SPECIAL + +/* GCC must match what sys/types.h uses for size_t. */ + +#define SIZE_TYPE "int" /* This is how to align the code that follows an unconditional branch. Don't define it, since it confuses the assembler (we hear). */ |