blob: 48623b90120eb73c3953dd322c8a93abb3c939ad [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86
2
3implementation
4
5int %test() {
6entry: ret int 7
7Test: ; dead block!
8 %A = call int %test()
9 %B = call int %test()
10 %C = add int %A, %B
11 ret int %C
12}
13