bolt/deps/llvm-18.1.8/clang/test/OpenMP/float16_sema.cpp

11 lines
223 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -fsyntax-only -x c++ -triple x86_64-unknown-linux-gnu -fopenmp -fopenmp-targets=nvptx64 -verify %s
// expected-no-diagnostics
int foo() {
#pragma omp target
{
__fp16 a = -1.0f16;
}
return 0;
}