xref: /llvm-project/clang/test/CodeGen/PowerPC/altivec-dss.c (revision a9ddb7d54e34533ff4af32d720d69177ef0c605d)
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
test1()9 void test1() {
10   vec_dss(1);
11 }
12