blob: 2924ff3d44ba296a4af1630958ab393db02dee3e [file] [log] [blame]
Ehsan Amiria538b0f2016-08-03 18:17:35 +00001; RUN: llc -verify-machineinstrs < %s | FileCheck %s
Hal Finkel17b6d772015-03-31 20:35:26 +00002target 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, i32* undef, align 4
9 %1 = trunc i32 %0 to i8
Daniel Neilson1e687242018-01-19 17:13:12 +000010 call void @llvm.memset.p0i8.i64(i8* null, i8 %1, i64 32, i1 false)
Hal Finkel17b6d772015-03-31 20:35:26 +000011 ret void
12
13; CHECK-LABEL: @test_vsx
14; CHECK: stxvd2x
15; CHECK: stxvd2x
16; CHECK: blr
17}
18
19; Function Attrs: nounwind
Daniel Neilson1e687242018-01-19 17:13:12 +000020declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i1) #1
Hal Finkel17b6d772015-03-31 20:35:26 +000021
22attributes #0 = { nounwind "target-cpu"="pwr8" }
23attributes #1 = { nounwind }
24