brintos

brintos / llvm-project-archived public Read only

0
0
Text · 417 B · 07935bb Raw
15 lines · plain
1; Verify ReplaceExtractVectorEltOfLoadWithNarrowedLoad fixes2;3; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s4 5; Test a memory copy of a v2i32 (via the constant pool).6define void @f1(ptr %dest) {7; CHECK-LABEL: f1:8; CHECK: llihf [[REG:%r[0-5]]], 10000009; CHECK: oilf [[REG]], 9999910; CHECK: stg [[REG]], 0(%r2)11; CHECK: br %r1412  store <2 x i32> <i32 1000000, i32 99999>, ptr %dest13  ret void14}15