1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Since tail duplication is currently neutered, we have to help the optimizer to remove the overhead of __main

llvm-svn: 11561
This commit is contained in:
Chris Lattner 2004-02-17 18:45:06 +00:00
parent f58d2dd6cf
commit f2b699b98b

View File

@ -49,8 +49,9 @@ void __main(void) {
abort(); /* Should be able to install ONE atexit handler! */
/* FIXME: This should sort the list by priority! */
for (; R->FP; ++R)
R->FP();
if (R->FP)
for (; R->FP; ++R)
R->FP();
}
static void run_destructors(void) {