[ArgPromo][Tests] Run update_test_checks on all ArgumentPromotion tests
Summary:
In preparation of D65531 as well as the reuse of these tests for the
Attributor, we modernize them and use the update_test_checks to simplify
updates.
This was done with the update_test_checks after D68819 and D68850.
Reviewers: hfinkel, vsk, dblaikie, davidxl, tejohnson, tstellar, echristo, chandlerc, efriedma, lebedev.ri
Subscribers: bollu, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68766
2019-10-10 15:10:51 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes
|
2020-06-27 11:41:37 +08:00
|
|
|
; RUN: opt < %s -basic-aa -argpromotion -mem2reg -S | FileCheck %s
|
2019-04-17 12:52:47 +08:00
|
|
|
target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
|
|
|
|
|
|
|
|
define internal i32 @test(i32* %X, i32* %Y) {
|
[ArgPromo][Tests] Run update_test_checks on all ArgumentPromotion tests
Summary:
In preparation of D65531 as well as the reuse of these tests for the
Attributor, we modernize them and use the update_test_checks to simplify
updates.
This was done with the update_test_checks after D68819 and D68850.
Reviewers: hfinkel, vsk, dblaikie, davidxl, tejohnson, tstellar, echristo, chandlerc, efriedma, lebedev.ri
Subscribers: bollu, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68766
2019-10-10 15:10:51 +08:00
|
|
|
; CHECK-LABEL: define {{[^@]+}}@test
|
|
|
|
; CHECK-SAME: (i32 [[X_VAL:%.*]], i32 [[Y_VAL:%.*]])
|
|
|
|
; CHECK-NEXT: [[C:%.*]] = add i32 [[X_VAL]], [[Y_VAL]]
|
|
|
|
; CHECK-NEXT: ret i32 [[C]]
|
|
|
|
;
|
2019-04-17 12:52:47 +08:00
|
|
|
%A = load i32, i32* %X
|
|
|
|
%B = load i32, i32* %Y
|
|
|
|
%C = add i32 %A, %B
|
|
|
|
ret i32 %C
|
|
|
|
}
|
|
|
|
|
|
|
|
define internal i32 @caller(i32* %B) {
|
[ArgPromo][Tests] Run update_test_checks on all ArgumentPromotion tests
Summary:
In preparation of D65531 as well as the reuse of these tests for the
Attributor, we modernize them and use the update_test_checks to simplify
updates.
This was done with the update_test_checks after D68819 and D68850.
Reviewers: hfinkel, vsk, dblaikie, davidxl, tejohnson, tstellar, echristo, chandlerc, efriedma, lebedev.ri
Subscribers: bollu, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68766
2019-10-10 15:10:51 +08:00
|
|
|
; CHECK-LABEL: define {{[^@]+}}@caller
|
|
|
|
; CHECK-SAME: (i32 [[B_VAL1:%.*]])
|
|
|
|
; CHECK-NEXT: [[C:%.*]] = call i32 @test(i32 1, i32 [[B_VAL1]])
|
|
|
|
; CHECK-NEXT: ret i32 [[C]]
|
|
|
|
;
|
2019-04-17 12:52:47 +08:00
|
|
|
%A = alloca i32
|
|
|
|
store i32 1, i32* %A
|
|
|
|
%C = call i32 @test(i32* %A, i32* %B)
|
|
|
|
ret i32 %C
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @callercaller() {
|
[ArgPromo][Tests] Run update_test_checks on all ArgumentPromotion tests
Summary:
In preparation of D65531 as well as the reuse of these tests for the
Attributor, we modernize them and use the update_test_checks to simplify
updates.
This was done with the update_test_checks after D68819 and D68850.
Reviewers: hfinkel, vsk, dblaikie, davidxl, tejohnson, tstellar, echristo, chandlerc, efriedma, lebedev.ri
Subscribers: bollu, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68766
2019-10-10 15:10:51 +08:00
|
|
|
; CHECK-LABEL: define {{[^@]+}}@callercaller()
|
|
|
|
; CHECK-NEXT: [[X:%.*]] = call i32 @caller(i32 2)
|
|
|
|
; CHECK-NEXT: ret i32 [[X]]
|
|
|
|
;
|
2019-04-17 12:52:47 +08:00
|
|
|
%B = alloca i32
|
|
|
|
store i32 2, i32* %B
|
|
|
|
%X = call i32 @caller(i32* %B)
|
|
|
|
ret i32 %X
|
|
|
|
}
|
|
|
|
|