mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
4de471dd0a
analysis. We're already using TTI in SimplifyCFG, so remove the hard-baked "cheapness" heuristic and use TTI directly. Generally NFC intended, but we're using a slightly different heuristic now so there is a slight test churn. Test changes: * combine-comparisons-by-cse.ll: Removed unneeded branch check. * 2014-08-04-muls-it.ll: Test now doesn't branch but emits muleq. * coalesce-subregs.ll: Superfluous block check. * 2008-01-02-hoist-fp-add.ll: fadd is safe to speculate. Change to udiv. * PhiBlockMerge.ll: Superfluous CFG checking code. Main checks still present. * select-gep.ll: A variable GEP is not expensive, just TCC_Basic, according to the TTI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228826 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
722 B
LLVM
25 lines
722 B
LLVM
; Test merging of blocks that only have PHI nodes in them
|
|
;
|
|
; RUN: opt < %s -simplifycfg -S | FileCheck %s
|
|
;
|
|
|
|
define i32 @test(i1 %a, i1 %b) {
|
|
br i1 %a, label %M, label %O
|
|
O: ; preds = %0
|
|
; CHECK: select i1 %b, i32 0, i32 1
|
|
; CHECK-NOT: phi
|
|
br i1 %b, label %N, label %Q
|
|
Q: ; preds = %O
|
|
br label %N
|
|
N: ; preds = %Q, %O
|
|
; This block should be foldable into M
|
|
%Wp = phi i32 [ 0, %O ], [ 1, %Q ] ; <i32> [#uses=1]
|
|
br label %M
|
|
M: ; preds = %N, %0
|
|
%W = phi i32 [ %Wp, %N ], [ 2, %0 ] ; <i32> [#uses=1]
|
|
%R = add i32 %W, 1 ; <i32> [#uses=1]
|
|
ret i32 %R
|
|
; CHECK: ret
|
|
}
|
|
|