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
/
sha1nexte-1.c
blob
40edc780ffe97bdc8d05c0ccad7aced492fffaf8
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -msha" } */
3
/* { dg-final { scan-assembler "sha1nexte\[ \\t\]+\[^\n\]*%xmm\[0-9\]" } } */
4
5
#include <immintrin.h>
6
7
volatile
__m128i x
;
8
9
void
extern
10
sha_test
(
void
)
11
{
12
x
=
_mm_sha1nexte_epu32
(
x
,
x
);
13
}