aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/condmove-1.c
blob: 3fcc591af007625835bab06a1a3380aaa9985f26 (plain)
1
2
3
4
5
6
7
8
9
/* PR middle-end/111260 */

/* Used to ICE while expansion of the `(a == b) ? b : 0;` */
int f1(long long a)
{
  int b = 822920;
  int t = a == b;
  return t * (int)b;
}