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
/
CodeGen
/
attr-noinline.c
blob
dbca71ff5fb27d983888d9f196f13e2a098923cf
1
// RUN: %clang_cc1 -g -emit-llvm -o %t %s
2
// RUN: grep 'noinline' %t
3
4
void
t1
()
__attribute__
((
noinline
));
5
6
void
t1
()
7
{
8
}
9