repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
min.c
blob
d8472702e9c08128f14aae0d31cc0e82a0ad1fb8
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-optimized" } */
3
4
static
inline
int
5
min
(
int
a
,
int
b
)
6
{
7
return
a
<
b
?
a
:
b
;
8
}
9
10
int
11
test_00
(
int
a
)
12
{
13
return
min
(
a
,
a
+
8
);
14
}
15
16
int
17
test_01
(
int
a
)
18
{
19
return
min
(
a
,
a
-
8
);
20
}
21
22
/* { dg-final { scan-tree-dump-not "MIN_EXPR" "optimized" } } */