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