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.1f;
x+=2.0f;
x-=2.0f;
half y = x + x;
half z = y * 1.0f;
return z;
// CHECK: half 0xH3260
}