aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr56977.c
blob: fde88afed1d162f559cc1786db18031e9cd6ff94 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-Og" } */

__attribute__((__error__("error"))) void error ();

void f (int i) {
    if (__builtin_constant_p (i)) {
	error ();
    }
}