builtin_constant_p.c: New test.

* gcc.c-torture/compile/builtin_constant_p.c: New test.
	(neglected in previous commit)

From-SVN: r114359
This commit is contained in:
Mark Shinwell 2006-06-04 16:30:28 +00:00
parent 63b4819753
commit 89cfff85bf

View File

@ -0,0 +1,8 @@
/* { dg-options "-O2" } */
int main (int argc, char *argv[])
{
static int a[] = { __builtin_constant_p (argc) ? 1 : 0 };
return a[0];
}