URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pragma-init-fini-2.c] - Rev 826
Compare with Previous | Blame | View Log
/* Tests for #pragma init and #pragma fini. */ /* { dg-do link { target *-*-solaris2.* } } */ /* { dg-options "-fpic" } */ #include <stdio.h> #pragma fini (f) void f() { fprintf (stderr, "f\n"); } int main () { }