diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-06-24 06:36:07 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-06-24 06:36:07 +0000 |
commit | d76d0aa68aaf0e9166b1d175833188c03f8ae25e (patch) | |
tree | cf5165372d57842491b9fc154ff3f8eca0b525c9 /llvm/test/CodeGen/Thumb/fpconv.ll | |
parent | 9db5fbac05bf6ca6007bca84ff46f2da4f929a85 (diff) | |
download | bcm5719-llvm-d76d0aa68aaf0e9166b1d175833188c03f8ae25e.tar.gz bcm5719-llvm-d76d0aa68aaf0e9166b1d175833188c03f8ae25e.zip |
Move thumb and thumb2 tests into separate directories.
llvm-svn: 74068
Diffstat (limited to 'llvm/test/CodeGen/Thumb/fpconv.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb/fpconv.ll | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Thumb/fpconv.ll b/llvm/test/CodeGen/Thumb/fpconv.ll new file mode 100644 index 00000000000..2003131fbb7 --- /dev/null +++ b/llvm/test/CodeGen/Thumb/fpconv.ll @@ -0,0 +1,61 @@ +; RUN: llvm-as < %s | llc -march=thumb + +define float @f1(double %x) { +entry: + %tmp1 = fptrunc double %x to float ; <float> [#uses=1] + ret float %tmp1 +} + +define double @f2(float %x) { +entry: + %tmp1 = fpext float %x to double ; <double> [#uses=1] + ret double %tmp1 +} + +define i32 @f3(float %x) { +entry: + %tmp = fptosi float %x to i32 ; <i32> [#uses=1] + ret i32 %tmp +} + +define i32 @f4(float %x) { +entry: + %tmp = fptoui float %x to i32 ; <i32> [#uses=1] + ret i32 %tmp +} + +define i32 @f5(double %x) { +entry: + %tmp = fptosi double %x to i32 ; <i32> [#uses=1] + ret i32 %tmp +} + +define i32 @f6(double %x) { +entry: + %tmp = fptoui double %x to i32 ; <i32> [#uses=1] + ret i32 %tmp +} + +define float @f7(i32 %a) { +entry: + %tmp = sitofp i32 %a to float ; <float> [#uses=1] + ret float %tmp +} + +define double @f8(i32 %a) { +entry: + %tmp = sitofp i32 %a to double ; <double> [#uses=1] + ret double %tmp +} + +define float @f9(i32 %a) { +entry: + %tmp = uitofp i32 %a to float ; <float> [#uses=1] + ret float %tmp +} + +define double @f10(i32 %a) { +entry: + %tmp = uitofp i32 %a to double ; <double> [#uses=1] + ret double %tmp +} |