| ; RUN: opt < %s -simplifycfg -S | FileCheck %s |
| ; Checking that we handle correctly the case when we have a switch |
| ; branching multiple times to the same block |
| @b = common global i32 0, align 4 |
| @a = common global i32 0, align 4 |
| ; Function Attrs: nounwind |
| ; CHECK: %switch.selectcmp1 = icmp eq i32 %1, 5 |
| ; CHECK: %switch.select2 = select i1 %switch.selectcmp1, i32 5, i32 %switch.select |
| %0 = load i32, i32* @b, align 4 |
| %tobool = icmp eq i32 %0, 0 |
| br i1 %tobool, label %if.end3, label %if.then |
| %1 = load i32, i32* @a, align 4 |
| switch i32 %1, label %if.end3 [ |
| %retval.0 = phi i32 [ 0, %if.end3 ], [ %1, %if.then ], [ %1, %if.then ] |