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
2015-12-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr67995-2.c
blob
632bb63244b36a62bd43c2565bfda4b87bea5bcf
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -march=core2" } */
3
4
unsigned int
5
__attribute__
((
target
(
"arch=haswell"
)))
6
__x86_rdrand
(
void
)
7
{
8
unsigned int
retries
=
100
;
9
unsigned int
val
;
10
11
while
(
__builtin_ia32_rdrand32_step
(&
val
) ==
0
)
12
if
(--
retries
==
0
)
13
return
0
;
14
15
return
val
;
16
}