mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
885a800b9d
llvm-svn: 9587
21 lines
295 B
C
21 lines
295 B
C
|
|
struct foo { int X; };
|
|
struct bar { int Y; };
|
|
|
|
extern int Func(struct foo*) __asm__("Func64");
|
|
extern int Func64(struct bar*);
|
|
|
|
int Func(struct foo *F) {
|
|
return 1;
|
|
}
|
|
|
|
int Func64(struct bar* B) {
|
|
return 0;
|
|
}
|
|
|
|
|
|
int test() {
|
|
Func(0); /* should be renamed to call Func64 */
|
|
Func64(0);
|
|
}
|