adjust for the new -Wvector-conversions option

llvm-svn: 69366
This commit is contained in:
Chris Lattner 2009-04-17 18:39:25 +00:00
parent cce935edfe
commit 70a42144ca
2 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// RUN: clang-cc %s -verify -fsyntax-only
// RUN: clang-cc %s -verify -fsyntax-only -Wvector-conversions
typedef unsigned int v2u __attribute__ ((vector_size (8)));
typedef signed int v2s __attribute__ ((vector_size (8)));
typedef signed int v1s __attribute__ ((vector_size (4)));

View File

@ -1,4 +1,4 @@
// RUN: clang-cc -fsyntax-only %s -verify
// RUN: clang-cc -fsyntax-only %s -verify -Wvector-conversions
typedef long long t1 __attribute__ ((vector_size (8)));
typedef char t2 __attribute__ ((vector_size (16)));
@ -28,3 +28,11 @@ type 't1' and integer type 'short' of different size}}
char *r3 = (char *)v1; // -expected-error {{invalid conversion between vector\
type 't1' and scalar type 'char *'}}
}
void f2(t2 X);
void f3(t3 Y) {
f2(Y); // expected-warning {{incompatible vector types passing 't3', expected 't2'}}
}