Adjust test case for lexical block pruning. Follow-on to r104842 and Radar 7424645.
[oota-llvm.git] / test / FrontendC / 2002-09-19-StarInLabel.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3 extern void start() __asm__("start");
4 extern void _start() __asm__("_start");
5 extern void __start() __asm__("__start");
6 void start() {}
7 void _start() {}
8 void __start() {}
9