; Test a bunch of cases where the cfg simplification code should ; be able to fold PHI nodes into computation in common cases. Folding the PHI ; nodes away allows the branches to be eliminated, performing a simple form of ; 'if conversion'. ; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis > %t.xform ; RUN: not grep phi %t.xform ; RUN: grep ret %t.xform declare void @use(i1) declare void @use.upgrd.1(i32) define void @test2(i1 %c, i1 %d, i32 %V, i32 %V2) { ;