Tanya Lattner | e9af5d1 | 2004-11-06 22:41:00 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null |
2 | |||||
Chris Lattner | dfd621f | 2002-09-19 16:54:57 +0000 | [diff] [blame] | 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 |