[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / Mem2Reg / pr24179.ll
blob72a9e61938d777add19da2f100dbad1746c391c7
1 ; RUN: opt -mem2reg < %s -S | FileCheck %s
2 ; RUN: opt -passes=mem2reg < %s -S | FileCheck %s
4 declare i32 @def(i32)
5 declare i1 @use(i32)
7 ; Special case of a single-BB alloca does not apply here since the load
8 ; is affected by the following store. Expect this case to be identified
9 ; and a PHI node to be created.
10 define void @test1() {
11 ; CHECK-LABEL: @test1(
12  entry:
13   %t = alloca i32
14   br label %loop
16  loop:
17   %v = load i32, i32* %t
18   %c = call i1 @use(i32 %v)
19 ; CHECK: [[PHI:%.*]] = phi i32 [ undef, %entry ], [ %n, %loop ]
20 ; CHECK: call i1 @use(i32 [[PHI]])
21   %n = call i32 @def(i32 7)
22   store i32 %n, i32* %t
23   br i1 %c, label %loop, label %exit
25  exit:
26   ret void
29 ; Same as above, except there is no following store. The alloca should just be
30 ; replaced with an undef
31 define void @test2() {
32 ; CHECK-LABEL: @test2(
33  entry:
34   %t = alloca i32
35   br label %loop
37  loop:
38   %v = load i32, i32* %t
39   %c = call i1 @use(i32 %v)
40 ; CHECK: %c = call i1 @use(i32 undef)
41   br i1 %c, label %loop, label %exit
43  exit:
44   ret void