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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
powerpc
/
20050603-3.c
blob
35be6602155e3b71b36438c13c06e9d688669d80
1
/* { dg-do compile { target "powerpc-*-*" } } */
2
/* { dg-options "-O2" } */
3
struct
Q
4
{
5
long
x
:
20
;
6
long
y
:
4
;
7
long
z
:
8
;
8
}
b
;
9
/* This should generate a single rl[w]imi. */
10
void
rotins
(
unsigned int
x
)
11
{
12
b
.
y
= (
x
<<
12
) | (
x
>>
20
);
13
}
14
15
/* { dg-final { scan-assembler-not "inm" } } */