repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
i386
/
minmax-2.c
blob
2021aaa07776902ea08a0b5725b01210772592d5
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
/* { dg-final { scan-assembler "test" } } */
4
/* { dg-final { scan-assembler-not "cmp" } } */
5
#define max(a,b) (((a) > (b))? (a) : (b))
6
t
(
unsigned int
a
)
7
{
8
return
(
max
(
a
,
1
));
9
}