aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/builtin_constant_p.c
blob: fdfe3e0da6d03c0266e6ad7205306b07982c389f (plain)
1
2
3
4
5
6
7
8
/* { dg-options "-O2" } */

int main (int argc, char *argv[])
{
  static int a[] = { __builtin_constant_p (argc) ? 1 : 0 };
  return a[0];
}