repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (160224:163495).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
pr44999.c
blob
d07dca1a010b166764a28298815b0c46bc18c8a9
1
/* Use UXTB to extract the lowest byte. */
2
/* { dg-options "-mthumb -Os" } */
3
/* { dg-require-effective-target arm_thumb2_ok } */
4
/* { dg-final { scan-assembler "uxtb" } } */
5
6
int
tp
(
int
x
,
int
y
)
7
{
8
return
(
x
&
0xff
) - (
y
&
0xffff
);
9
}