blob: aa7e4d6860246fe37cc30aa0c2987b05f46cd836 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=ppc32 | not grep xori
Chris Lattnere8033c02005-09-23 00:53:06 +00002
Tanya Lattnercfab3da2008-02-19 08:07:33 +00003define i32 @test(i1 %B, i32* %P) {
4 br i1 %B, label %T, label %F
5
6T: ; preds = %0
7 store i32 123, i32* %P
8 ret i32 0
9
10F: ; preds = %0
11 ret i32 17
Chris Lattnere8033c02005-09-23 00:53:06 +000012}
Tanya Lattnercfab3da2008-02-19 08:07:33 +000013