9 lines
244 B
C
9 lines
244 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
extern void start(void) __asm__("start");
|
|
extern void _start(void) __asm__("_start");
|
|
extern void __start(void) __asm__("__start");
|
|
void start(void) {}
|
|
void _start(void) {}
|
|
void __start(void) {}
|
|
|