Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
a6d81f9a2d236ae21491455f649ea765123f6fc7
/
.
/
test
/
SemaOpenCL
/
vec_compare.cl
blob: dd91aa592ab21ad644a6b12bc0221fa8202d99ef [
file
] [
log
] [
blame
]
//
RUN
:
%
clang_cc1
%
s -verify -pedantic -fsyntax-only
typedef __attribute__
((
ext_vector_type
(
2
)))
unsigned int uint2
;
typedef __attribute__
((
ext_vector_type
(
2
)))
int int2
;
void unsignedCompareOps
(
)
{
uint2 A
,
B
;
int2 result
=
A
!=
B
;
}