(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
copysign-bsl.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2" } */
       3  
       4  /* Test that we can generate DImode BSL when we are using
       5     copysign.  */
       6  
       7  double
       8  foo (double a, double b)
       9  {
      10    return __builtin_copysign (a, b);
      11  }
      12  
      13  /* { dg-final { scan-assembler "b\(sl|it|if\)\tv\[0-9\]" } } */