aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr97488.c
blob: de7396cd4ecddc8edbe369c77c9fbd6ad5087027 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do compile { target int128 } }
// { dg-options "-O1 -ftree-vrp" }

__int128
ef (__int128 ms)
{
  int dh = 129;
  int *hj = &dh;

  return ms << *hj ? ms : 0;
}