aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/gimplefe-error-8.c
blob: 59e81eb4b32d1773924d1655879a92cfdaeee48e (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile } */
/* { dg-options "-fgimple" } */

int __GIMPLE() f(int x, int y)
{
  int a;
  a = (x < y) ? 1 : 2; /* { dg-error "expected" } */
  return a;
}