llvm-project/clang/test/CodeGen/2002-09-19-StarInLabel.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
244 B
C
Raw Normal View History

// 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) {}