You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
415 B
24 lines
415 B
// RUN: %clang_cc1 %s -emit-llvm -o - -triple spir-unknown-unknown | 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
|
|
}
|
|
|
|
// CHECK-LABEL: @test_inc(half %x)
|
|
// CHECK: [[INC:%.*]] = fadd half %x, 0xH3C00
|
|
// CHECK: ret half [[INC]]
|
|
half test_inc(half x)
|
|
{
|
|
return ++x;
|
|
}
|