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
Stop only if there aren't any usable algorithms
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
builtin-bswap-1.c
blob
0f94025c5343941bae5f02bbafd8dd072fc7f959
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
/* { dg-final { scan-assembler-not "builtin_bswap" } } */
4
5
long
foo
(
long
a
)
6
{
7
long
b
;
8
9
#if __LP64__
10
b
=
__builtin_bswap64
(
a
);
11
#else
12
b
=
__builtin_bswap32
(
a
);
13
#endif
14
15
return
b
;
16
}