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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
builtin-bswap-2.c
blob
818aa76b95dbf99e98b40f8ae35a9533e7c6983b
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -march=nocona" } */
3
/* { dg-final { scan-assembler-not "bswap\[ \t\]" } } */
4
5
int
foo
(
int
x
)
6
{
7
int
t
=
__builtin_bswap32
(
x
);
8
return
__builtin_bswap32
(
t
);
9
}
10