OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:v2u
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Sema/
vector-ops.c
2
typedef unsigned int
v2u
__attribute__ ((vector_size (8)));
typedef
6
void test1(
v2u
v2ua, v2s v2sa, v2f v2fa) {
16
v2ua = (v2ua==v2sa); // expected-warning{{incompatible vector types assigning to '
v2u
' (vector of 2 'unsigned int' values) from 'int __attribute__((ext_vector_type(2)))' (vector of 2 'int' values)}}
20
int array1[v2ua]; // expected-error{{size of array has non-integer type '
v2u
' (vector of 2 'unsigned int' values)}}
25
v2u
*v2u_ptr = 0;
vector-assign.c
2
typedef unsigned int
v2u
__attribute__ ((vector_size (8)));
typedef
10
v2u
v2;
15
v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from '
v2u
' (vector of 2 'unsigned int' values)}}
20
v2 = v1; // expected-warning {{incompatible vector types assigning to '
v2u
' (vector of 2 'unsigned int' values) from 'v2s' (vector of 2 'int' values)}}
21
v2 = v3; // expected-error {{assigning to '
v2u
' (vector of 2 'unsigned int' values) from incompatible type 'v1s' (vector of 1 'int' value)}}
22
v2 = v4; // expected-warning {{incompatible vector types assigning to '
v2u
' (vector of 2 'unsigned int' values) from 'v2f' (vector of 2 'float' values)}}
23
v2 = v5; // expected-warning {{incompatible vector types assigning to '
v2u
' (vector of 2 'unsigned int' values) from 'v4ss' (vector of 4 'short' values)}}
26
v3 = v2; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type '
v2u
' (vector of 2 'unsigned int' values)}}
31
v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from '
v2u
' (vector of 2 'unsigned int' values)}}
36
v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' values) from '
v2u
' (vector of 2 'unsigned int' values)}
[
all
...]
Completed in 54 milliseconds