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
[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
clzero.c
blob
9a68a4928a894de418ac5feaf71e89e611b1c02b
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -mclzero" } */
3
4
/* Verify that they work in both 32bit and 64bit. */
5
6
#include <x86intrin.h>
7
8
void
9
foo
(
void
*
k
)
10
{
11
_mm_clzero
(
k
);
12
}
13