brintos

brintos / llvm-project-archived public Read only

0
0
Text · 423 B · cb29457 Raw
12 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py2; RUN: opt %s -passes=scalarizer -S -o - | FileCheck %s3 4define <vscale x 1 x i32> @test1(<vscale x 1 x i32> %a, <vscale x 1 x i32> %b) {5; CHECK-LABEL: @test1(6; CHECK-NEXT:    [[R:%.*]] = add <vscale x 1 x i32> [[A:%.*]], [[B:%.*]]7; CHECK-NEXT:    ret <vscale x 1 x i32> [[R]]8;9  %r = add <vscale x 1 x i32> %a, %b10  ret <vscale x 1 x i32> %r11}12