Skip to content

Commit 4ad3c32

Browse files
committedMar 8, 2018
[InstCombine, NewGVN] remove FP undef from tests
I'm trying to preserve the intent of these tests by using non-undef operands; if we fix FP undef folding these tests will not pass. llvm-svn: 327004
1 parent 9e2c8a9 commit 4ad3c32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎llvm/test/Transforms/InstCombine/select-crash.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ entry:
1515
%cmp86 = fcmp ogt double %highlights, 0.000000e+00
1616
%cond90 = select i1 %cmp86, double %sub24, double %add26
1717
%mul91 = fmul double %highlights, %cond90
18-
%add94 = fadd double undef, %mul91
18+
%add94 = fadd double %mul91, %mul91
1919
ret double %add94
2020
}
2121

‎llvm/test/Transforms/NewGVN/pr32607.ll

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ define hidden void @foo() {
66
; CHECK-NEXT: br label [[IF:%.*]]
77
; CHECK: if:
88
; CHECK-NEXT: [[TMP0:%.*]] = phi double [ [[TMP1:%.*]], [[IF]] ], [ undef, [[TOP:%.*]] ]
9-
; CHECK-NEXT: [[TMP1]] = fadd double [[TMP0]], undef
9+
; CHECK-NEXT: [[TMP1]] = fadd double [[TMP0]], 1.000000e+00
1010
; CHECK-NEXT: br i1 false, label [[L50:%.*]], label [[IF]]
1111
; CHECK: L50:
1212
; CHECK-NEXT: store i8 undef, i8* null
@@ -22,7 +22,7 @@ top:
2222

2323
if: ; preds = %if, %top
2424
%0 = phi double [ %1, %if ], [ %.promoted, %top ]
25-
%1 = fadd double %0, undef
25+
%1 = fadd double %0, 1.0
2626
br i1 false, label %L50, label %if
2727

2828
L50: ; preds = %if

0 commit comments

Comments
 (0)
Please sign in to comment.