brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1011 B · 9e690e4 Raw
27 lines · plain
1; RUN: llvm-as < %s | llvm-dis > %t2; RUN: llvm-as < %t | llvm-dis > %t23; RUN: diff %t %t24; ModuleID = '<stdin>'5target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64"6target triple = "i686-apple-darwin8"7@ld = external global x86_fp80		; <ptr> [#uses=1]8@d = global double 4.050000e+00, align 8		; <ptr> [#uses=1]9@f = global float 0x4010333340000000		; <ptr> [#uses=1]10 11define i32 @foo() {12entry:13	%retval = alloca i32, align 4		; <ptr> [#uses=1]14	%"alloca point" = bitcast i32 0 to i32		; <i32> [#uses=0]15	%tmp = load float, ptr @f		; <float> [#uses=1]16	%tmp1 = fpext float %tmp to double		; <double> [#uses=1]17	%tmp2 = load double, ptr @d		; <double> [#uses=1]18	%tmp3 = fmul double %tmp1, %tmp2		; <double> [#uses=1]19	%tmp4 = fpext double %tmp3 to x86_fp80		; <x86_fp80> [#uses=1]20	store x86_fp80 %tmp4, ptr @ld21	br label %return22 23return:		; preds = %entry24	%retval4 = load i32, ptr %retval		; <i32> [#uses=1]25	ret i32 %retval426}27