1 // RUN: %clang_cc1 -emit-llvm %s -triple x86_64-apple-darwin -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 */