
Add supported OpenCL extensions to target info. It serves as default values to save the users of the burden setting each supported extensions and optional core features in command line. Re-commit after fixing build error due to missing override attribute. Differential Revision: http://reviews.llvm.org/D19484 llvm-svn: 269670
24 lines
415 B
Common Lisp
24 lines
415 B
Common Lisp
// 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;
|
|
}
|