1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00
llvm-mirror/test/Transforms/GVNHoist/int_sideeffect.ll
Eric Christopher a62270de2c Revert "Temporarily Revert "Add basic loop fusion pass.""
The reversion apparently deleted the test/Transforms directory.

Will be re-reverting again.

llvm-svn: 358552
2019-04-17 04:52:47 +00:00

31 lines
623 B
LLVM

; RUN: opt -S < %s -gvn-hoist | FileCheck %s
declare void @llvm.sideeffect()
; GVN hoisting across a @llvm.sideeffect.
; CHECK-LABEL: scalarsHoisting
; CHECK: = fsub
; CHECK: br i1 %cmp,
; CHECK-NOT: fsub
define float @scalarsHoisting(float %d, float %m, float %a, i1 %cmp) {
entry:
br i1 %cmp, label %if.then, label %if.else
if.then:
call void @llvm.sideeffect()
%sub0 = fsub float %m, %a
%mul = fmul float %sub0, %d
br label %if.end
if.else:
%sub1 = fsub float %m, %a
%div = fdiv float %sub1, %d
br label %if.end
if.end:
%phi = phi float [ %mul, %if.then ], [ %div, %if.else ]
ret float %phi
}