1/* PR target/29978 */
2/* { dg-do compile } */
3/* { dg-options "-Os" } */
4
5void g ();
6
7void
8f (long long v)
9{
10  if (v > 0xfffffffffLL)
11    g ();
12  g ();
13}
14
15/* Verify there are no redundant jumps jl .L2; jle .L2 */
16/* { dg-final { scan-assembler-not "jl\[^e\]*\\.L" { target ia32 } } } */
17