OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:v2s
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Sema/
vector-ops.c
3
typedef int
v2s
__attribute__ ((vector_size (8)));
typedef
6
void test1(v2u v2ua,
v2s
v2sa, v2f v2fa) {
26
v2s
*v2s_ptr;
vector-assign.c
3
typedef signed int
v2s
__attribute__ ((vector_size (8)));
typedef
9
v2s
v1;
15
v1 = v2; // expected-warning {{incompatible vector types assigning to '
v2s
' from 'v2u'}}
16
v1 = v3; // expected-error {{assigning to '
v2s
' from incompatible type 'v1s'}}
17
v1 = v4; // expected-warning {{incompatible vector types assigning to '
v2s
' from 'v2f'}}
18
v1 = v5; // expected-warning {{incompatible vector types assigning to '
v2s
' from 'v4ss'}}
20
v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' from '
v2s
'}}
25
v3 = v1; // expected-error {{assigning to 'v1s' from incompatible type '
v2s
'}}
30
v4 = v1; // expected-warning {{incompatible vector types assigning to 'v2f' from '
v2s
'}}
35
v5 = v1; // expected-warning {{incompatible vector types assigning to 'v4ss' from '
v2s
'}}
[
all
...]
Completed in 39 milliseconds