summaryrefslogtreecommitdiff
path: root/clang/test/Lexer/has_feature.cu
blob: 5cb653593ecd859f216b07d84cdfe1d808fae6bc (plain)
1
2
3
4
5
6
7
8
// 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