forked from OSchip/llvm-project
[PowerPC][NFC] Update testcase to avoid dead code
The original testcase might be optimized out due to dead code, update the testcase to avoid it. llvm-svn: 365810
This commit is contained in:
parent
bdf8198d4c
commit
84a2c78082
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
; CHECK: MII = 8 MAX_II = 18
|
; CHECK: MII = 8 MAX_II = 18
|
||||||
|
|
||||||
define dso_local fastcc void @_ZN3povL9polysolveEiPdS0_() unnamed_addr #0 {
|
define dso_local fastcc double @_ZN3povL9polysolveEiPdS0_() unnamed_addr #0 {
|
||||||
br label %1
|
br label %1
|
||||||
|
|
||||||
1: ; preds = %1, %0
|
1: ; preds = %1, %0
|
||||||
|
@ -32,5 +32,5 @@ define dso_local fastcc void @_ZN3povL9polysolveEiPdS0_() unnamed_addr #0 {
|
||||||
14: ; preds = %3, %2
|
14: ; preds = %3, %2
|
||||||
%15 = phi double [ undef, %2 ], [ %11, %3 ]
|
%15 = phi double [ undef, %2 ], [ %11, %3 ]
|
||||||
%16 = fmul fast double %15, undef
|
%16 = fmul fast double %15, undef
|
||||||
ret void
|
ret double %16
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue