20 lines · plain
1; Test 32-bit ANDs in which the second operand is variable.2;3; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s4 5; Check that there are no spills.6define void @f1(ptr %src1, ptr %dest) {7; CHECK-LABEL: f1:8; CHECK-NOT: %r159; CHECK: br %r1410 %val = load <16 x i32>, ptr %src1, !tbaa !111 %add = add <16 x i32> %val, %val12 %res = bitcast <16 x i32> %add to <16 x float>13 store <16 x float> %res, ptr %dest, !tbaa !214 ret void15}16 17!0 = !{ !"root" }18!1 = !{ !"set1", !0 }19!2 = !{ !"set2", !0 }20