Don't try to materialize a function that isn't materializable anyways. This
[llvm.git] / test / Integer / prototype_bt.ll
blob2236e8bf38fcc8ad655a14ef0c4cfcd0e0ddaccf
1 ; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
6 declare i31 @"bar"(i31 %in) 
8 define i31 @"foo"(i31 %blah)
9 begin
10   %xx = call i31 @bar(i31 %blah)
11   ret i31 %xx
12 end