1  /* { dg-do compile } */
       2  /* { dg-options "-O3" } */
       3  
       4  #include <math.h>
       5  
       6  void f13(double * restrict z, double * restrict w, double * restrict x, double * restrict y, int n)
       7  {
       8      for (int i = 0; i < n; i++) {
       9          z[i] = (isunordered(w[i], 0)) ? x[i] + w[i] : y[i] - w[i];
      10      }
      11  }
      12  
      13  /* { dg-final { scan-assembler-not {\tbic\t} } } */
      14  /* { dg-final { scan-assembler-times {\tnot\tp[0-9]+\.b, p[0-9]+/z, p[0-9]+\.b\n} 1 } } */
      15  /* { dg-final { scan-assembler-times {\tfcmuo\tp[0-9]+\.d, p[0-9]+/z, z[0-9]+\.d, z[0-9]+\.d} 1 } } */