llvm-project/clang/test/CodeGen/builtin_Float16.c
Phoebe Wang 52818fd97f [Clang][FP16] Add 4 builtins for _Float16
We are lacking builtins support for `_Float16`. In most cases, we can use other floating-type builtins and truncate them to `_Float16`.
But it's a problem to SNaN, e.g., https://gcc.godbolt.org/z/cqr5nG1jh
This patch adds `__builtin_nansf16` support as well as other 3 ones since they are usually used together.

Reviewed By: LuoYuanke

Differential Revision: https://reviews.llvm.org/D127050
2022-06-06 09:00:26 +08:00

18 lines
767 B
C

// RUN: %clang_cc1 -emit-llvm -o - -triple x86_64-linux-pc -target-feature +avx512fp16 %s | FileCheck %s
// RUN: %clang_cc1 -emit-llvm -o - -triple spir-unknown-unknown %s | FileCheck %s
// RUN: %clang_cc1 -emit-llvm -o - -triple armv7a--none-eabi %s | FileCheck %s
// RUN: %clang_cc1 -emit-llvm -o - -triple aarch64-linux-gnu %s | FileCheck %s
void test_float16_builtins(void) {
volatile _Float16 res;
// CHECK: store volatile half 0xH7C00, ptr %res, align 2
res = __builtin_huge_valf16();
// CHECK: store volatile half 0xH7C00, ptr %res, align 2
res = __builtin_inff16();
// CHECK: store volatile half 0xH7E00, ptr %res, align 2
res = __builtin_nanf16("");
// CHECK: store volatile half 0xH7D00, ptr %res, align 2
res = __builtin_nansf16("");
}