blob: 171acca2f118936c5ead1df8393884d224878c00 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
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