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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
unsigned-extend-1.c
blob
3b4ab048fb099b76bd3217e4b874658861d75725
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
unsigned char
foo
(
unsigned char
c
)
5
{
6
return
(
c
>=
'0'
) && (
c
<=
'9'
);
7
}
8
9
/* { dg-final { scan-assembler-not "uxtb" } } */