bolt/deps/llvm-18.1.8/clang/test/CodeGen/PowerPC/altivec-dss.c

12 lines
261 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -flax-vector-conversions=none -triple powerpc-linux-gnu -S -O0 -o - %s -target-feature +altivec | FileCheck %s
// REQUIRES: powerpc-registered-target
#include <altivec.h>
// CHECK-LABEL: test1
// CHECK: dss
void test1() {
vec_dss(1);
}