xref: /llvm-project/llvm/test/CodeGen/PowerPC/memset-nc-le.ll (revision 427fb35192f1f7bb694a5910b05abc5925a798b2)
1; RUN: llc -verify-machineinstrs < %s | FileCheck %s
2target datalayout = "e-m:e-i64:64-n32:64"
3target triple = "powerpc64le"
4
5; Function Attrs: nounwind
6define void @test_vsx() unnamed_addr #0 align 2 {
7entry:
8  %0 = load i32, ptr undef, align 4
9  %1 = trunc i32 %0 to i8
10  call void @llvm.memset.p0.i64(ptr null, i8 %1, i64 32, i1 false)
11  ret void
12
13; CHECK-LABEL: @test_vsx
14; CHECK: stxvd2x
15; CHECK: stxvd2x
16; CHECK: blr
17}
18
19; Function Attrs: nounwind
20declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i1) #1
21
22attributes #0 = { nounwind "target-cpu"="pwr8" }
23attributes #1 = { nounwind }
24
25