1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Testcase for bad constant handling

llvm-svn: 2133
This commit is contained in:
Chris Lattner 2002-04-07 07:58:25 +00:00
parent f3d41ba855
commit d84b895d43

View File

@ -0,0 +1,11 @@
; The output formater prints out 1.0e100 as Inf!
;
; RUN: as < %s | dis | as | dis
implementation
float "test"()
begin
%tmp = mul float 1.0e100, 1.0e1
ret float %tmp
end