-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "This patch builds on top of D13378 to handle constant…
… condition."" This reverts commit r249528 and reapply r249431. The fix for the fallout has been commited in r249575. From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 249581
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
; RUN: opt -analyze -scalar-evolution < %s | FileCheck %s | ||
|
||
define i32 @branch_true(i32 %x, i32 %y) { | ||
; CHECK-LABEL: Classifying expressions for: @branch_true | ||
entry: | ||
br i1 true, label %add, label %merge | ||
|
||
add: | ||
%sum = add i32 %x, %y | ||
br label %merge | ||
|
||
merge: | ||
%v = phi i32 [ %sum, %add ], [ %x, %entry ] | ||
; CHECK: %v = phi i32 [ %sum, %add ], [ %x, %entry ] | ||
; CHECK-NEXT: --> (%x + %y) U: full-set S: full-set | ||
ret i32 %v | ||
} | ||
|
||
define i32 @branch_false(i32 %x, i32 %y) { | ||
; CHECK-LABEL: Classifying expressions for: @branch_false | ||
entry: | ||
br i1 false, label %add, label %merge | ||
|
||
add: | ||
%sum = add i32 %x, %y | ||
br label %merge | ||
|
||
merge: | ||
%v = phi i32 [ %sum, %add ], [ %x, %entry ] | ||
; CHECK: %v = phi i32 [ %sum, %add ], [ %x, %entry ] | ||
; CHECK-NEXT: --> %x U: full-set S: full-set | ||
ret i32 %v | ||
} | ||
|
||
define i32 @select_true(i32 %x, i32 %y) { | ||
; CHECK-LABEL: Classifying expressions for: @select_true | ||
entry: | ||
%v = select i1 true, i32 %x, i32 %y | ||
; CHECK: %v = select i1 true, i32 %x, i32 %y | ||
; CHECK-NEXT: --> %x U: full-set S: full-set | ||
ret i32 %v | ||
} | ||
|
||
define i32 @select_false(i32 %x, i32 %y) { | ||
; CHECK-LABEL: Classifying expressions for: @select_false | ||
entry: | ||
%v = select i1 false, i32 %x, i32 %y | ||
; CHECK: %v = select i1 false, i32 %x, i32 %y | ||
; CHECK-NEXT: --> %y U: full-set S: full-set | ||
ret i32 %v | ||
} |