blob: ca163edc5cc545d541ce66605b82310fcefa06fa [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -inline -disable-output
2
3implementation ; Functions:
4
5int %reload() {
6reloadentry:
7 br label %A
8A:
9 call void %callee( )
10 ret int 0
11}
12
13internal void %callee() {
14entry:
15 %X = alloca sbyte, uint 0
16 %Y = cast int 0 to uint
17 %Z = alloca sbyte, uint %Y
18 ret void
19}