URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pragma-init-fini-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Tests for #pragma init and #pragma fini. */ /* { dg-do link { target *-*-solaris2.* } } */ /* { dg-options "-fpic" } */ /* { dg-xfail-if "no .pushsection/.popsection" { i?86-*-solaris2.8 && { ! gas } } } */ #include <stdio.h> #pragma fini (f) void f() { fprintf (stderr, "f\n"); } int main () { }
Go to most recent revision | Compare with Previous | Blame | View Log