brintos

brintos / llvm-project-archived public Read only

0
0
Text · 286 B · f61a2ee Raw
11 lines · c
1// RUN: %clang_cc1 -verify -fopenmp -x c -triple x86_64-apple-darwin10 %s2// RUN: %clang_cc1 -verify -fopenmp-simd -x c -triple x86_64-apple-darwin10 %s3// expected-no-diagnostics4 5void f(float *a, float *b) {6#pragma omp unroll7  for (int i = 0; i < 128; i++) {8    a[i] = b[i];9  }10}11