[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2002-09-19-StarInLabel.c
bloba34fc8969073f0e7700fb9b7f7a1c214ce25a46e
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 extern void start(void) __asm__("start");
4 extern void _start(void) __asm__("_start");
5 extern void __start(void) __asm__("__start");
6 void start(void) {}
7 void _start(void) {}
8 void __start(void) {}