blob: d07ccf7fd2c234515f6e75a7a3470357342b5a7d [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3
4struct foo { int X; };
5struct bar { int Y; };
6
7extern int Func(struct foo*) __asm__("Func64");
8extern int Func64(struct bar*);
9
10int Func(struct foo *F) {
11 return 1;
12}
13
14int Func64(struct bar* B) {
15 return 0;
16}
17
18
19int test() {
20 Func(0); /* should be renamed to call Func64 */
21 Func64(0);
22}