blob: e046e2b0029789e050e8f5ac1cfe232c5dc57a65 [file] [log] [blame]
Eric Christophera11d1292011-07-26 00:57:50 +00001// RUN: %clang_cc1 -emit-llvm %s -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