| Eric Christopher | 87dd7d9 | 2011-07-27 16:26:09 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm %s -triple x86_64-apple-darwin -o /dev/null |
| Eric Christopher | 3883e66 | 2011-07-26 22:17:02 +0000 | [diff] [blame] | 2 | |
| 3 | |||||
| 4 | struct foo { int X; }; | ||||
| 5 | struct bar { int Y; }; | ||||
| 6 | |||||
| 7 | extern int Func(struct foo*) __asm__("Func64"); | ||||
| 8 | extern int Func64(struct bar*); | ||||
| 9 | |||||
| 10 | int Func(struct foo *F) { | ||||
| 11 | return 1; | ||||
| 12 | } | ||||
| 13 | |||||
| 14 | int Func64(struct bar* B) { | ||||
| 15 | return 0; | ||||
| 16 | } | ||||
| 17 | |||||
| 18 | |||||
| 19 | int test() { | ||||
| 20 | Func(0); /* should be renamed to call Func64 */ | ||||
| 21 | Func64(0); | ||||
| 22 | } | ||||