blob: 86a2571d57bc5610c945717370e2d2ae4df108a9 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3extern void start() __asm__("start");
4extern void _start() __asm__("_start");
5extern void __start() __asm__("__start");
6void start() {}
7void _start() {}
8void __start() {}
9