Ehsan Amiri | a538b0f | 2016-08-03 18:17:35 +0000 | [diff] [blame] | 1 | ; RUN: llc -verify-machineinstrs < %s | FileCheck %s |
Hal Finkel | 17b6d77 | 2015-03-31 20:35:26 +0000 | [diff] [blame] | 2 | target datalayout = "e-m:e-i64:64-n32:64" |
| 3 | target triple = "powerpc64le" |
| 4 | |
| 5 | ; Function Attrs: nounwind |
| 6 | define void @test_vsx() unnamed_addr #0 align 2 { |
| 7 | entry: |
| 8 | %0 = load i32, i32* undef, align 4 |
| 9 | %1 = trunc i32 %0 to i8 |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 10 | call void @llvm.memset.p0i8.i64(i8* null, i8 %1, i64 32, i32 1, i1 false) |
Hal Finkel | 17b6d77 | 2015-03-31 20:35:26 +0000 | [diff] [blame] | 11 | ret void |
| 12 | |
| 13 | ; CHECK-LABEL: @test_vsx |
| 14 | ; CHECK: stxvd2x |
| 15 | ; CHECK: stxvd2x |
| 16 | ; CHECK: blr |
| 17 | } |
| 18 | |
| 19 | ; Function Attrs: nounwind |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 20 | declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) #1 |
Hal Finkel | 17b6d77 | 2015-03-31 20:35:26 +0000 | [diff] [blame] | 21 | |
| 22 | attributes #0 = { nounwind "target-cpu"="pwr8" } |
| 23 | attributes #1 = { nounwind } |
| 24 | |