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
2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
mips
/
movcc-1.c
blob
1a930c9ac06cc022b766e71df8929bf9e5f7cc36
1
/* { dg-do compile } */
2
/* { dg-options "-O2 isa>=4" } */
3
/* { dg-final { scan-assembler "movz" } } */
4
/* { dg-final { scan-assembler "movn" } } */
5
6
void
ext_int
(
int
);
7
8
NOMIPS16
int
9
sub1
(
int
i
,
int
j
,
int
k
)
10
{
11
ext_int
(
k
?
i
:
j
);
12
}
13
14
NOMIPS16
int
15
sub2
(
int
i
,
int
j
,
long
l
)
16
{
17
ext_int
(!
l
?
i
:
j
);
18
}