Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
a36ddbe8bf0c7269656f554288703afbb2b0a034
/
.
/
test
/
CodeGenOpenCL
/
half.cl
blob: 7ecae894d03dc4f54fba36e1005a06c9990669eb [
file
] [
log
] [
blame
]
//
RUN
:
%
clang_cc1
%
s -emit-llvm -o
-
|
FileCheck
%
s
#
pragma OPENCL EXTENSION cl_khr_fp16
:
enable
half test
(
)
{
half x
=
0.1
f
;
x
+=
2.0
f
;
x-=
2.0
f
;
half y
=
x
+
x
;
half z
=
y
*
1.0
f
;
return z
;
//
CHECK
:
half
0
xH3260
}