In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / Transforms / SimplifyCFG / two-entry-phi-return.ll
blob19814ade4d91752ed74f7cf8fec1718037a3d728
1 ; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep br
3 define i1 @qux(i8* %m, i8* %n, i8* %o, i8* %p) nounwind  {
4 entry:
5         %tmp7 = icmp eq i8* %m, %n
6         br i1 %tmp7, label %bb, label %UnifiedReturnBlock
8 bb:
9         %tmp15 = icmp eq i8* %o, %p
10         br label %UnifiedReturnBlock
12 UnifiedReturnBlock:
13         %result = phi i1 [ 0, %entry ], [ %tmp15, %bb ]
14         ret i1 %result