Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / LCSSA / basictest.ll
blobfd9f086cd1ca546d7466998a006bfe4ff5b6d613
1 ; RUN: opt < %s -passes=lcssa -S | FileCheck %s
2 ; RUN: opt < %s -passes=debugify,lcssa -S | FileCheck -check-prefix=DEBUGIFY %s
3 ; RUN: opt < %s -passes=debugify,lcssa -S --try-experimental-debuginfo-iterators | FileCheck -check-prefix=DEBUGIFY %s
5 define void @lcssa(i1 %S2) {
6 ; CHECK-LABEL: @lcssa
7 entry:
8         br label %loop.interior
9 loop.interior:          ; preds = %post.if, %entry
10         br i1 %S2, label %if.true, label %if.false
11 if.true:                ; preds = %loop.interior
12         %X1 = add i32 0, 0              ; <i32> [#uses=1]
13         br label %post.if
14 if.false:               ; preds = %loop.interior
15         %X2 = add i32 0, 1              ; <i32> [#uses=1]
16         br label %post.if
17 post.if:                ; preds = %if.false, %if.true
18         %X3 = phi i32 [ %X1, %if.true ], [ %X2, %if.false ]             ; <i32> [#uses=1]
19         br i1 %S2, label %loop.exit, label %loop.interior
20 loop.exit:              ; preds = %post.if
21 ; CHECK: %X3.lcssa = phi i32
22 ; DEBUGIFY: %X3.lcssa = phi i32 {{.*}}, !dbg ![[DbgLoc:[0-9]+]]
23 ; CHECK: %X4 = add i32 3, %X3.lcssa
24         %X4 = add i32 3, %X3            ; <i32> [#uses=0]
25         ret void
28 ; Make sure the lcssa phi has %X3's debug location
29 ; DEBUGIFY: ![[DbgLoc]] = !DILocation(line: 7