]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pragma-init-fini-2.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pragma-init-fini-2.c
CommitLineData
a8e68029
DJ
1/* Tests for #pragma init and #pragma fini. */
2
3/* { dg-do link { target *-*-solaris2.* } } */
4/* { dg-options "-fpic" } */
5
6#include <stdio.h>
7
8#pragma fini (f)
9
10void f() {
11 fprintf (stderr, "f\n");
12}
13
14int main () {
15}