aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lazy-ptr-test.c
blob: da66b518ff0555c7234989e63d36aeeb0c5e1e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile { target powerpc*-apple-darwin* } } */
/* { dg-options "-S" } */

void f () __attribute__((weak_import));

typedef void PF (void);

void f(void){};

PF* g (void) { return f; }

int main()
{
	(*g())();
	return 0;
}

/* { dg-final { scan-assembler "non_lazy_ptr" } } */