repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rename llvm-gcc4 to llvm-gcc.
[llvm-complete.git]
/
test
/
CFrontend
/
2007-06-05-NoInlineAttribute.c
blob
1fd981b6e4df4de6c14f3260cc4dad3524994965
1
// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep llvm.noinline
2
3
static int
bar
(
int
x
,
int
y
)
__attribute__
((
noinline
));
4
5
static int
bar
(
int
x
,
int
y
)
6
{
7
return
x
+
y
;
8
}
9
10
int
foo
(
int
a
,
int
b
) {
11
return
bar
(
b
,
a
);
12
}
13