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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
PowerPC
/
altivec-dss.c
blob
bdee70547f4793a66a9786153eeca152a8ec2c89
1
// RUN: %clang_cc1 -flax-vector-conversions=none -triple powerpc-linux-gnu -S -O0 -o - %s -target-feature +altivec | FileCheck %s
2
3
// REQUIRES: powerpc-registered-target
4
5
#include <altivec.h>
6
7
// CHECK-LABEL: test1
8
// CHECK: dss
9
void
test1
() {
10
vec_dss
(
1
);
11
}