In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / CodeGen / Generic / call2-ret0.ll
blob8c7e8920f259856aea2371b4bb8e41483c65e8bc
1 ; RUN: llvm-as < %s | llc
3 define i32 @bar(i32 %x) {
4         ret i32 0
7 define i32 @foo(i32 %x) {
8         %q = call i32 @bar( i32 1 )             ; <i32> [#uses=1]
9         ret i32 %q
12 define i32 @main() {
13         %r = call i32 @foo( i32 2 )             ; <i32> [#uses=1]
14         ret i32 %r