[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / SystemZ / vec-extract-01.ll
blob0f1bb8601b309ea3fed39a41c6f8521c09cc85cf
1 ; Verify ReplaceExtractVectorEltOfLoadWithNarrowedLoad fixes
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s
5 ; Test a memory copy of a v2i32 (via the constant pool).
6 define void @f1(<2 x i32> *%dest) {
7 ; CHECK-LABEL: f1:
8 ; CHECK: llihf [[REG:%r[0-5]]], 1000000
9 ; CHECK: oilf [[REG]], 99999
10 ; CHECK: stg [[REG]], 0(%r2)
11 ; CHECK: br %r14
12   store <2 x i32> <i32 1000000, i32 99999>, <2 x i32> *%dest
13   ret void