blob: c7233395bcc8ab2044d934a5b1e6ec796b17d49d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
; RUN: llvm-as < %s | opt -tailduplicate -disable-output
implementation
int %sum() {
entry:
br label %loopentry
loopentry:
%i.0 = phi int [ 1, %entry ], [ %tmp.3, %loopentry ]
%tmp.3 = add int %i.0, 1
br label %loopentry
}
|