Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
[oota-llvm.git] / test / Transforms / TailDup / 2003-07-22-InfiniteLoop.ll
1 ; RUN: llvm-as < %s | opt -tailduplicate -disable-output
2
3 implementation
4
5 int %sum() {
6 entry:
7         br label %loopentry
8
9 loopentry:
10         %i.0 = phi int [ 1, %entry ], [ %tmp.3, %loopentry ]
11         %tmp.3 = add int %i.0, 1
12         br label %loopentry
13 }