remove hand-written crt1.s and Scrt1.s files for all archs
authorRich Felker <dalias@aerifal.cx>
Wed, 14 Oct 2015 21:08:34 +0000 (17:08 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 14 Oct 2015 21:08:34 +0000 (17:08 -0400)
commit6fef8cafbd0f6f185897bc87feb1ff66e2e204e1
tree367c666c981d3537e0c504a4df97e4f17d182c13
parent4e6b8eee7755a5aa7f866d0d0cd290653fd87a31
remove hand-written crt1.s and Scrt1.s files for all archs

since commit c5e34dabbb47d8e97a4deccbb421e0cd93c0094b, crt1.c has
provided a "mostly-C" implementation of the crt1 start file that
avoids the need for arch-specific symbol referencing, PIC/PIE-specific
code variants, etc. but for archs that had existing hand-written
versions, the new code was initially unused, and later only used as
the dynamic linker entry point. this commit switches all archs to
using the new code.

the code being removed was a recurring source of subtle errors, and
was still broken at least on arm, where it failed to properly align
the stack pointer before calling into C code.
crt/arm/Scrt1.s [deleted file]
crt/arm/crt1.s [deleted file]
crt/i386/Scrt1.s [deleted file]
crt/i386/crt1.s [deleted file]
crt/microblaze/crt1.s [deleted file]
crt/mips/crt1.s [deleted file]
crt/powerpc/crt1.s [deleted file]
crt/x86_64/Scrt1.s [deleted file]
crt/x86_64/crt1.s [deleted file]