blob: 86a2571d57bc5610c945717370e2d2ae4df108a9 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnerdfd621f2002-09-19 16:54:57 +00003extern void start() __asm__("start");
4extern void _start() __asm__("_start");
5extern void __start() __asm__("__start");
6void start() {}
7void _start() {}
8void __start() {}
9