aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/cast-fp.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Generic/cast-fp.ll')
-rw-r--r--test/CodeGen/Generic/cast-fp.ll80
1 files changed, 32 insertions, 48 deletions
diff --git a/test/CodeGen/Generic/cast-fp.ll b/test/CodeGen/Generic/cast-fp.ll
index 8359329..5f05d85 100644
--- a/test/CodeGen/Generic/cast-fp.ll
+++ b/test/CodeGen/Generic/cast-fp.ll
@@ -1,49 +1,33 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc
-
-%a_fstr = internal constant [8 x sbyte] c"a = %f\0A\00"
-%a_lstr = internal constant [10 x sbyte] c"a = %lld\0A\00"
-%a_dstr = internal constant [8 x sbyte] c"a = %d\0A\00"
-
-%b_dstr = internal constant [8 x sbyte] c"b = %d\0A\00"
-%b_fstr = internal constant [8 x sbyte] c"b = %f\0A\00"
-
-declare int %printf(sbyte*, ...)
-%A = global double 2.0
-%B = global int 2
-
-int %main() {
- ;; A
- %a = load double* %A
- %a_fs = getelementptr [8 x sbyte]* %a_fstr, long 0, long 0
- call int (sbyte*, ...)* %printf(sbyte* %a_fs, double %a)
-
- ;; cast double to long
- %a_d2l = cast double %a to long
- %a_ls = getelementptr [10 x sbyte]* %a_lstr, long 0, long 0
- call int (sbyte*, ...)* %printf(sbyte* %a_ls, long %a_d2l)
-
- ;; cast double to int
- %a_d2i = cast double %a to int
- %a_ds = getelementptr [8 x sbyte]* %a_dstr, long 0, long 0
- call int (sbyte*, ...)* %printf(sbyte* %a_ds, int %a_d2i)
-
- ;; cast double to sbyte
- %a_d2sb = cast double %a to sbyte
- call int (sbyte*, ...)* %printf(sbyte* %a_ds, sbyte %a_d2sb)
-
- ;; cast int to sbyte
- %a_d2i2sb = cast int %a_d2i to sbyte
- call int (sbyte*, ...)* %printf(sbyte* %a_ds, sbyte %a_d2i2sb)
-
- ;; B
- %b = load int* %B
- %b_ds = getelementptr [8 x sbyte]* %b_dstr, long 0, long 0
- call int (sbyte*, ...)* %printf(sbyte* %b_ds, int %b)
-
- ;; cast int to double
- %b_i2d = cast int %b to double
- %b_fs = getelementptr [8 x sbyte]* %b_fstr, long 0, long 0
- call int (sbyte*, ...)* %printf(sbyte* %b_fs, double %b_i2d)
-
- ret int 0
+; RUN: llvm-as < %s | llc
+@a_fstr = internal constant [8 x i8] c"a = %f\0A\00" ; <[8 x i8]*> [#uses=1]
+@a_lstr = internal constant [10 x i8] c"a = %lld\0A\00" ; <[10 x i8]*> [#uses=1]
+@a_dstr = internal constant [8 x i8] c"a = %d\0A\00" ; <[8 x i8]*> [#uses=1]
+@b_dstr = internal constant [8 x i8] c"b = %d\0A\00" ; <[8 x i8]*> [#uses=1]
+@b_fstr = internal constant [8 x i8] c"b = %f\0A\00" ; <[8 x i8]*> [#uses=1]
+@A = global double 2.000000e+00 ; <double*> [#uses=1]
+@B = global i32 2 ; <i32*> [#uses=1]
+
+declare i32 @printf(i8*, ...)
+
+define i32 @main() {
+ %a = load double* @A ; <double> [#uses=4]
+ %a_fs = getelementptr [8 x i8]* @a_fstr, i64 0, i64 0 ; <i8*> [#uses=1]
+ call i32 (i8*, ...)* @printf( i8* %a_fs, double %a ) ; <i32>:1 [#uses=0]
+ %a_d2l = fptosi double %a to i64 ; <i64> [#uses=1]
+ %a_ls = getelementptr [10 x i8]* @a_lstr, i64 0, i64 0 ; <i8*> [#uses=1]
+ call i32 (i8*, ...)* @printf( i8* %a_ls, i64 %a_d2l ) ; <i32>:2 [#uses=0]
+ %a_d2i = fptosi double %a to i32 ; <i32> [#uses=2]
+ %a_ds = getelementptr [8 x i8]* @a_dstr, i64 0, i64 0 ; <i8*> [#uses=3]
+ call i32 (i8*, ...)* @printf( i8* %a_ds, i32 %a_d2i ) ; <i32>:3 [#uses=0]
+ %a_d2sb = fptosi double %a to i8 ; <i8> [#uses=1]
+ call i32 (i8*, ...)* @printf( i8* %a_ds, i8 %a_d2sb ) ; <i32>:4 [#uses=0]
+ %a_d2i2sb = trunc i32 %a_d2i to i8 ; <i8> [#uses=1]
+ call i32 (i8*, ...)* @printf( i8* %a_ds, i8 %a_d2i2sb ) ; <i32>:5 [#uses=0]
+ %b = load i32* @B ; <i32> [#uses=2]
+ %b_ds = getelementptr [8 x i8]* @b_dstr, i64 0, i64 0 ; <i8*> [#uses=1]
+ call i32 (i8*, ...)* @printf( i8* %b_ds, i32 %b ) ; <i32>:6 [#uses=0]
+ %b_i2d = sitofp i32 %b to double ; <double> [#uses=1]
+ %b_fs = getelementptr [8 x i8]* @b_fstr, i64 0, i64 0 ; <i8*> [#uses=1]
+ call i32 (i8*, ...)* @printf( i8* %b_fs, double %b_i2d ) ; <i32>:7 [#uses=0]
+ ret i32 0
}