1 2 3 4 5 6 7 8 9 10 11 12 13 14
implementation ;; This is an irreducible flow graph void "irreducible"(bool %cond) begin br bool %cond, label %X, label %Y X: br label %Y Y: br label %X end