Make gcc generate assembly files (%.ll) until Chris has a stable
[oota-llvm.git] / test / irreducible.ll
1 implementation
2
3 ;; This is an irreducible flow graph
4
5 void "irreducible"(bool %cond)
6 begin
7         br bool %cond, label %X, label %Y
8
9 X:
10         br label %Y
11 Y:
12         br label %X
13 end
14