Adjust test to handle fallout from r217102.

llvm-svn: 217104
This commit is contained in:
David Majnemer 2014-09-03 23:20:58 +00:00
parent f463436d9c
commit 467e856600
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
void test_switch(int *A, int *B, int Length) {
#pragma clang loop vectorize(enable) unroll(disable)
for (int i = 0; i < Length; i++) {
/* expected-warning {{loop not vectorized: failed explicitly specified loop vectorization}} */ switch (A[i]) {
/* expected-warning {{loop not vectorized: failed explicitly specified loop vectorization}} */ for (int i = 0; i < Length; i++) {
switch (A[i]) {
case 0:
B[i] = 1;
break;