repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
Lexer
/
has_feature.cu
blob
5cb653593ecd859f216b07d84cdfe1d808fae6bc
1
// RUN: %clang_cc1 -E -triple x86_64-linux-gnu %s -o - | FileCheck %s
2
3
// CHECK: has_noinline_keyword
4
#if __has_feature(cuda_noinline_keyword)
5
int has_noinline_keyword();
6
#else
7
int no_noinine_keyword();
8
#endif