Currently -fuse-init-array option is not effective when target triple does not specify os, on x86,x86_64.
i.e.
$clang -target i386 -fuse-init-array test.c -S // -fuse-init-array is not honored.
$clang -target i386-linux -fuse-init-array test.c -S // -fuse-init-array is honored.
This patch fixes first case.
And does cleanup.
This whitespace change seems unnecessary, this is not a function doc comment, there should be a blank line here.