brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · fcc8689 Raw
39 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes2; RUN: opt < %s -passes=argpromotion -S | FileCheck %s3 4target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"5target triple = "x86_64-pc-windows-msvc"6 7define internal void @add(ptr %this, ptr sret(i32) %r) {8; CHECK-LABEL: define {{[^@]+}}@add9; CHECK-SAME: (i32 [[THIS_0_VAL:%.*]], i32 [[THIS_4_VAL:%.*]], ptr noalias [[R:%.*]]) {10; CHECK-NEXT:    [[AB:%.*]] = add i32 [[THIS_0_VAL]], [[THIS_4_VAL]]11; CHECK-NEXT:    store i32 [[AB]], ptr [[R]], align 412; CHECK-NEXT:    ret void13;14  %ap = getelementptr {i32, i32}, ptr %this, i32 0, i32 015  %bp = getelementptr {i32, i32}, ptr %this, i32 0, i32 116  %a = load i32, ptr %ap17  %b = load i32, ptr %bp18  %ab = add i32 %a, %b19  store i32 %ab, ptr %r20  ret void21}22 23define void @f() {24; CHECK-LABEL: define {{[^@]+}}@f() {25; CHECK-NEXT:    [[R:%.*]] = alloca i32, align 426; CHECK-NEXT:    [[PAIR:%.*]] = alloca { i32, i32 }, align 827; CHECK-NEXT:    [[PAIR_VAL:%.*]] = load i32, ptr [[PAIR]], align 428; CHECK-NEXT:    [[TMP1:%.*]] = getelementptr i8, ptr [[PAIR]], i64 429; CHECK-NEXT:    [[PAIR_VAL1:%.*]] = load i32, ptr [[TMP1]], align 430; CHECK-NEXT:    call void @add(i32 [[PAIR_VAL]], i32 [[PAIR_VAL1]], ptr noalias [[R]])31; CHECK-NEXT:    ret void32;33  %r = alloca i3234  %pair = alloca {i32, i32}35 36  call void @add(ptr %pair, ptr sret(i32) %r)37  ret void38}39