llvm-project
8 строк · 270.0 Байт
1// RUN: %clang_cc1 -o - -triple amdgcn-amd-amdhsa -fcuda-is-device -fsyntax-only -verify %s
2// RUN: %clang_cc1 -o - -triple spirv64-amd-amdhsa -fcuda-is-device -fsyntax-only -verify %s
3
4// expected-no-diagnostics
5
6__fp16 testFP16AsArgAndReturn(__fp16 x) {
7return x;
8}
9