1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
7 extern int Func(struct foo
*) __asm__("Func64");
8 extern int Func64(struct bar
*);
10 int Func(struct foo
*F
) {
14 int Func64(struct bar
* B
) {
20 Func(0); /* should be renamed to call Func64 */