blob: 9697e56a719f1fe324b6eac512923b6309ecdbc6 [file] [log] [blame]
Chris Lattner9a8e2f22009-09-11 17:02:12 +00001; RUN: opt < %s -simplifycfg -S | not grep br
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattnerb46665e2008-03-18 03:45:45 +00003define void @foo(i1 %C, i32* %P) {
4 br i1 %C, label %T, label %F
5T: ; preds = %0
6 store i32 7, i32* %P
7 ret void
8F: ; preds = %0
9 store i32 7, i32* %P
10 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011}