aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/uninit-variables-vectors.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/uninit-variables-vectors.c')
-rw-r--r--test/Sema/uninit-variables-vectors.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Sema/uninit-variables-vectors.c b/test/Sema/uninit-variables-vectors.c
index d59d6fef00..10a8ecc378 100644
--- a/test/Sema/uninit-variables-vectors.c
+++ b/test/Sema/uninit-variables-vectors.c
@@ -7,10 +7,10 @@ __m128 _mm_loadu_ps(const float *p);
void test1(float *input) {
__m128 x, y, z, w, X; // expected-note {{variable 'x' is declared here}} expected-note {{variable 'y' is declared here}} expected-note {{variable 'w' is declared here}} expected-note {{variable 'z' is declared here}}
- x = _mm_xor_ps(x,x); // expected-warning {{variable 'x' is possibly uninitialized when used here}}
- y = _mm_xor_ps(y,y); // expected-warning {{variable 'y' is possibly uninitialized when used here}}
- z = _mm_xor_ps(z,z); // expected-warning {{variable 'z' is possibly uninitialized when used here}}
- w = _mm_xor_ps(w,w); // expected-warning {{variable 'w' is possibly uninitialized when used here}}
+ x = _mm_xor_ps(x,x); // expected-warning {{variable 'x' is uninitialized when used here}}
+ y = _mm_xor_ps(y,y); // expected-warning {{variable 'y' is uninitialized when used here}}
+ z = _mm_xor_ps(z,z); // expected-warning {{variable 'z' is uninitialized when used here}}
+ w = _mm_xor_ps(w,w); // expected-warning {{variable 'w' is uninitialized when used here}}
X = _mm_loadu_ps(&input[0]);
X = _mm_xor_ps(X,X); // no-warning
}