You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.167
Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
parent
e19d552987
commit
b084638f15
@ -1,30 +0,0 @@
|
||||
; RUN: opt -S < %s -gvn-sink | FileCheck %s
|
||||
|
||||
declare void @llvm.sideeffect()
|
||||
|
||||
; GVN sinking across a @llvm.sideeffect.
|
||||
|
||||
; CHECK-LABEL: scalarsSinking
|
||||
; CHECK-NOT: fmul
|
||||
; CHECK: = phi
|
||||
; CHECK: = fmul
|
||||
define float @scalarsSinking(float %d, float %m, float %a, i1 %cmp) {
|
||||
entry:
|
||||
br i1 %cmp, label %if.then, label %if.else
|
||||
|
||||
if.then:
|
||||
call void @llvm.sideeffect()
|
||||
%sub = fsub float %m, %a
|
||||
%mul0 = fmul float %sub, %d
|
||||
br label %if.end
|
||||
|
||||
if.else:
|
||||
%add = fadd float %m, %a
|
||||
%mul1 = fmul float %add, %d
|
||||
br label %if.end
|
||||
|
||||
if.end:
|
||||
%phi = phi float [ %mul0, %if.then ], [ %mul1, %if.else ]
|
||||
ret float %phi
|
||||
}
|
||||
|
Reference in New Issue
Block a user