diff options
author | Paul Richards <paul@FreeBSD.org> | 1993-06-18 02:04:48 +0000 |
---|---|---|
committer | Paul Richards <paul@FreeBSD.org> | 1993-06-18 02:04:48 +0000 |
commit | 52768b912baa8ebd9f7818f6dba6b00bf5998f21 (patch) | |
tree | 0977f1726c5e866ce6cccb3b7f7577869829c3ff /lib | |
parent | 8eece53087d37aa1d8b392c58e65359533342463 (diff) | |
download | src-52768b912baa8ebd9f7818f6dba6b00bf5998f21.tar.gz src-52768b912baa8ebd9f7818f6dba6b00bf5998f21.zip |
Upgrade to GCC 2.X
Notes
Notes:
svn path=/head/; revision=7
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/i386/crt0.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/csu/i386/crt0.c b/lib/csu/i386/crt0.c index 363098b326c6..e25eba5b0f48 100644 --- a/lib/csu/i386/crt0.c +++ b/lib/csu/i386/crt0.c @@ -50,6 +50,11 @@ int errno = 0; asm(".text"); asm(".long 0xc000c000"); +#if 1 /* more needed for alignment on i486/gcc-2.3.3 */ +asm(".long 0xc000c000"); +asm(".long 0xc000c000"); +asm(".long 0xc000c000"); +#endif extern unsigned char etext; extern unsigned char eprol asm ("eprol"); |