1  /* PR tree-optimization/52046 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O3 -fexceptions -fnon-call-exceptions" } */
       4  /* { dg-require-effective-target exceptions } */
       5  
       6  extern float a[], b[], c[], d[];
       7  extern int k[];
       8  
       9  void
      10  foo (void)
      11  {
      12    int i;
      13    for (i = 0; i < 1024; ++i)
      14      k[i] = (a[i] < b[i]) | (c[i] < d[i]);
      15  }