1  /* PR target/29978 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Os" } */
       4  
       5  void g ();
       6  
       7  void
       8  f (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 } } } */