repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
Lexer
/
has_attribute.cpp
blob
9a58a3013fbec516709623d014a35a745e4280f4
1
// RUN: %clang_cc1 -E %s -o - | FileCheck %s
2
3
// CHECK: always_inline
4
#if __has_attribute(always_inline)
5
int
always_inline
();
6
#endif
7
8
// CHECK: no_dummy_attribute
9
#if !__has_attribute(dummy_attribute)
10
int
no_dummy_attribute
();
11
#endif
12