OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:v4ss
(Results
1 - 1
of
1
) sorted by null
/external/clang/test/Sema/
vector-assign.c
6
typedef signed short
v4ss
__attribute__ ((vector_size (8)));
typedef
13
v4ss
v5;
18
v1 = v5; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from '
v4ss
' (vector of 4 'short' 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)}}
28
v3 = v5; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type '
v4ss
'}}
33
v4 = v5; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from '
v4ss
' (vector of 4 'short' values)}}
35
v5 = v1; // expected-warning {{incompatible vector types assigning to '
v4ss
' (vector of 4 'short' values) from 'v2s' (vector of 2 '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)}}
37
v5 = v3; // expected-error {{assigning to '
v4ss
' (vector of 4 'short' values) from incompatible type 'v1s' (vector of 1 'int' value)}}
38
v5 = v4; // expected-warning {{incompatible vector types assigning to '
v4ss
' (vector of 4 'short' values) from 'v2f'}
[
all
...]
Completed in 51 milliseconds