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-nodebug.c
blob
66caa2b38fac9436b2b23c83a90d2139dfbbceb3
1
// RUN: %clang_cc1 -g -emit-llvm -o %t %s
2
// RUN: not grep 'call void @llvm.dbg.func.start' %t
3
4
void
t1
()
__attribute__
((
nodebug
));
5
6
void
t1
()
7
{
8
int
a
=
10
;
9
10
a
++;
11
}
12