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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr50766.c
blob
9923de4248e9473fea5e2cb00c606e1e896ce770
1
/* PR target/50766 */
2
/* { dg-do assemble } */
3
/* { dg-options "-mbmi2" } */
4
/* { dg-require-effective-target bmi2 } */
5
6
#include <x86intrin.h>
7
8
unsigned
z
;
9
10
void
11
foo
()
12
{
13
unsigned
x
=
0x23593464
;
14
unsigned
y
=
0xF9494302
;
15
z
=
_pext_u32
(
x
,
y
);
16
}
17