bolt/deps/llvm-18.1.8/clang/test/Lexer/has_feature.cu

9 lines
210 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -E -triple x86_64-linux-gnu %s -o - | FileCheck %s
// CHECK: has_noinline_keyword
#if __has_feature(cuda_noinline_keyword)
int has_noinline_keyword();
#else
int no_noinine_keyword();
#endif