[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
|
2019-04-17 12:52:47 +08:00
|
|
|
; RUN: opt < %s -argpromotion -S | FileCheck %s
|
|
|
|
|
|
|
|
; ArgumentPromotion should preserve the default function address space
|
|
|
|
; from the data layout.
|
|
|
|
|
|
|
|
target datalayout = "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8"
|
|
|
|
|
|
|
|
@g = common global i32 0, align 4
|
|
|
|
|
|
|
|
define i32 @bar() {
|
[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 {{[^@]+}}@bar() addrspace(1)
|
|
|
|
; CHECK-NEXT: entry:
|
|
|
|
; CHECK-NEXT: [[CALL:%.*]] = call addrspace(1) i32 @foo()
|
|
|
|
; CHECK-NEXT: ret i32 [[CALL]]
|
|
|
|
;
|
|
|
|
|
2019-04-17 12:52:47 +08:00
|
|
|
entry:
|
|
|
|
%call = call i32 @foo(i32* @g)
|
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define internal i32 @foo(i32*) {
|
[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 {{[^@]+}}@foo() addrspace(1)
|
|
|
|
; CHECK-NEXT: entry:
|
|
|
|
; CHECK-NEXT: [[RETVAL:%.*]] = alloca i32, align 4
|
|
|
|
; CHECK-NEXT: call addrspace(0) void asm sideeffect "ldr r0, [r0] \0Abx lr \0A", ""()
|
|
|
|
; CHECK-NEXT: unreachable
|
|
|
|
;
|
2019-04-17 12:52:47 +08:00
|
|
|
entry:
|
|
|
|
%retval = alloca i32, align 4
|
|
|
|
call void asm sideeffect "ldr r0, [r0] \0Abx lr \0A", ""()
|
|
|
|
unreachable
|
|
|
|
}
|
|
|
|
|