1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py 2; RUN: llc -verify-machineinstrs -O3 -mcpu=pwr8 \ 3; RUN: -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s 4define dso_local void @test(i64* %Src, i64* nocapture %Tgt) local_unnamed_addr { 5; CHECK-LABEL: test: 6; CHECK: # %bb.0: # %entry 7; CHECK-NEXT: lxvd2x 0, 0, 3 8; CHECK-NEXT: xxswapd 0, 0 9; CHECK-NEXT: stxvd2x 0, 0, 4 10; CHECK-NEXT: blr 11entry: 12 %0 = bitcast i64* %Src to i8* 13 %1 = tail call <2 x double> @llvm.ppc.vsx.lxvd2x.be(i8* %0) #2 14 %2 = bitcast i64* %Tgt to <2 x double>* 15 store <2 x double> %1, <2 x double>* %2, align 1 16 ret void 17} 18 19declare <2 x double> @llvm.ppc.vsx.lxvd2x.be(i8*) #1 20