Propagate ValueRanges across equality.
[oota-llvm.git] / test / Integer / prototype_bt.ll
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
4
5 implementation
6
7 declare i31 @"bar"(i31 %in) 
8
9 define i31 @"foo"(i31 %blah)
10 begin
11   %xx = call i31 @bar(i31 %blah)
12   ret i31 %xx
13 end
14