blob: ea6489273c2e0e1b314988359dea193b9cb1b20f [file] [log] [blame]
// RUN: %dragonegg -S %s -o - -O3 | FileCheck -check-prefix=VON %s
// RUN: %dragonegg -S %s -o - -O3 -fno-tree-vectorize | FileCheck -check-prefix=VOFF %s
// VON: fadd <
// VOFF-NOT: fadd <
void bar(float *A, float* B, float K) {
int i;
for (i = 0; i < 64; ++i)
A[i] *= B[i] + K;
}