blob: fe96359fdc288a79592aab9ef22e075a4f8042b8 [file] [log] [blame]
Chris Lattnerb5631bf2003-10-29 19:18:48 +00001
2struct foo { int X; };
3struct bar { int Y; };
4
5extern int Func(struct foo*) __asm__("Func64");
6extern int Func64(struct bar*);
7
8int Func(struct foo *F) {
9 return 1;
10}
11
12int Func64(struct bar* B) {
13 return 0;
14}
15
16
17int test() {
18 Func(0); /* should be renamed to call Func64 */
19 Func64(0);
20}