1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o /dev/null 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc extern void start() __asm__("start"); 4*f4a2713aSLionel Sambuc extern void _start() __asm__("_start"); 5*f4a2713aSLionel Sambuc extern void __start() __asm__("__start"); start()6*f4a2713aSLionel Sambucvoid start() {} _start()7*f4a2713aSLionel Sambucvoid _start() {} __start()8*f4a2713aSLionel Sambucvoid __start() {} 9*f4a2713aSLionel Sambuc 10