URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [lazy-ptr-test.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { 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" } } */
Go to most recent revision | Compare with Previous | Blame | View Log