[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / ArgumentPromotion / chained.ll
blob5939f36dec51ce5b37bc3bdb9955f5e61c4e79d2
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes
2 ; RUN: opt < %s -passes=argpromotion -S | FileCheck %s
4 @G1 = constant i32 0
5 @G2 = constant i32* @G1
7 define internal i32 @test(i32** %x) {
8 ; CHECK-LABEL: define {{[^@]+}}@test
9 ; CHECK-SAME: (i32 [[X_VAL_VAL:%.*]])
10 ; CHECK-NEXT:  entry:
11 ; CHECK-NEXT:    ret i32 [[X_VAL_VAL]]
13 entry:
14   %y = load i32*, i32** %x
15   %z = load i32, i32* %y
16   ret i32 %z
19 define i32 @caller() {
20 ; CHECK-LABEL: define {{[^@]+}}@caller()
21 ; CHECK-NEXT:  entry:
22 ; CHECK-NEXT:    [[G2_VAL:%.*]] = load i32*, i32** @G2
23 ; CHECK-NEXT:    [[G2_VAL_VAL:%.*]] = load i32, i32* [[G2_VAL]]
24 ; CHECK-NEXT:    [[X:%.*]] = call i32 @test(i32 [[G2_VAL_VAL]])
25 ; CHECK-NEXT:    ret i32 [[X]]
27 entry:
28   %x = call i32 @test(i32** @G2)
29   ret i32 %x