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
[testsuite] require sqrt_insn effective target where needed
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
powerpc
/
rotate.c
blob
5d47215d9d55d5aea4b82890a9203963d7dd9ab1
1
/* { dg-options "-O2" } */
2
/* { dg-final { scan-assembler-not "slwi" } } */
3
unsigned int
foo
(
unsigned int
x
)
4
{
5
return
((
x
>>
16
) &
0xffff
) | ((
x
&
0xffff
) <<
16
);
6
}