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
* gcc.dg/const-elim-1.c: Remove xfail for xtensa-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
i386-rotate-1.c
blob
0b9ae5a8c138d36233105a3a63874f0d8971db25
1
/* Verify that rolb instruction is emitted on IA-32/x86-64. */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
void
foo
(
unsigned char
*);
6
7
int
8
main
(
void
)
9
{
10
unsigned char
c
=
0
;
11
foo
(&
c
);
12
c
=
c
>>
1
|
c
<<
7
;
13
return
c
;
14
}
15
16
/* { dg-final { scan-assembler "rolb" { target i?86-*-* x86_64-*-* } } } */