Renamed intermediate values that used the same type and name as previous
[oota-llvm.git] / test / Assembler / 2002-04-07-InfConstant.llx
1 ; The output formater prints out 1.0e100 as Inf!
2 ;
3 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
4
5 implementation
6
7 float "test"()
8 begin
9         %tmp = mul float 1.0e100, 1.0e1
10         ret float %tmp
11 end