(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr98212.c
       1  /* PR rtl-optimization/98212 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -msse2 -mfpmath=sse -mno-avx" } */
       4  /* { dg-final { scan-assembler-times "\tucomiss\t" 2 } } */
       5  /* { dg-final { scan-assembler-not "\tcomiss\t" } } */
       6  
       7  void foo (void);
       8  
       9  void
      10  bar (float a, float b)
      11  {
      12    if (a != b)
      13      foo ();
      14  }
      15  
      16  void
      17  baz (float a, float b)
      18  {
      19    if (a == b)
      20      foo ();
      21  }