llvm-6502/test/Transforms/GVN/local-pre.ll
Shuxin Yang d93e8a06b2 Resurrect r191017 " GVN proceeds in the presence of dead code" plus a fix to PR17307 & 17308.
The problem of r191017 is that when GVN fabricate a val-number for a dead instruction (in order
to make following expr-PRE happy), it forget to fabricate a leader-table entry for it as well.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191118 91177308-0d34-0410-b5e6-96231b3b80d8
2013-09-20 23:12:57 +00:00

19 lines
288 B
LLVM

; RUN: opt < %s -gvn -enable-pre -S | grep "b.pre"
define i32 @main(i32 %p, i32 %q) {
block1:
%cmp = icmp eq i32 %p, %q
br i1 %cmp, label %block2, label %block3
block2:
%a = add i32 %p, 1
br label %block4
block3:
br label %block4
block4:
%b = add i32 %p, 1
ret i32 %b
}