The LIT test cases were migrated with the script provided by Nikita Popov. No manual changes were made. Committed without review since no functional changes, after consultation with uweigand.
37 lines
967 B
LLVM
37 lines
967 B
LLVM
; Test insertions of memory values into 0 on z14.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z14 | FileCheck %s
|
|
|
|
; Test VLLEZLF.
|
|
define <4 x i32> @f1(ptr %ptr) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: vllezlf %v24, 0(%r2)
|
|
; CHECK: br %r14
|
|
%val = load i32, ptr %ptr
|
|
%ret = insertelement <4 x i32> zeroinitializer, i32 %val, i32 0
|
|
ret <4 x i32> %ret
|
|
}
|
|
|
|
; Test VLLEZLF with a float.
|
|
define <4 x float> @f2(ptr %ptr) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: vllezlf %v24, 0(%r2)
|
|
; CHECK: br %r14
|
|
%val = load float, ptr %ptr
|
|
%ret = insertelement <4 x float> zeroinitializer, float %val, i32 0
|
|
ret <4 x float> %ret
|
|
}
|
|
|
|
; Test VLLEZLF with a float when the result is stored to memory.
|
|
define void @f3(ptr %ptr, ptr %res) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: vllezlf [[REG:%v[0-9]+]], 0(%r2)
|
|
; CHECK: vst [[REG]], 0(%r3)
|
|
; CHECK: br %r14
|
|
%val = load float, ptr %ptr
|
|
%ret = insertelement <4 x float> zeroinitializer, float %val, i32 0
|
|
store <4 x float> %ret, ptr %res
|
|
ret void
|
|
}
|
|
|