repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[libc][test] Adjust header paths in tests (#119623)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
X86
/
pr72106.c
blob
937b74ec58d7b3e3a31cca5195181344dbf46300
1
// RUN: %clang_cc1 -triple x86_64 -ffreestanding -target-cpu cannonlake -emit-llvm < %s | FileCheck %s
2
3
#include <immintrin.h>
4
5
int
main
(
int
argc
,
char
**
argv
) {
6
// CHECK-LABEL: @main
7
// CHECK: @llvm.masked.load.v4i64.p0
8
__m256i ptrs
=
_mm256_maskz_loadu_epi64
(
0
,
argv
);
9
return
0
;
10
}