hanchenye-llvm-project/clang/test/CodeGenOpenCL/half.cl

16 lines
237 B
Common Lisp

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
half test()
{
half x = 0.1f;
x+=2.0f;
x-=2.0f;
half y = x + x;
half z = y * 1.0f;
return z;
// CHECK: half 0xH3260
}