aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Mips
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2013-03-05 23:22:30 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2013-03-05 23:22:30 +0000
commit5ffd24c49f6d78c166ee357424bf4e20f61af6bc (patch)
tree68535d6a62f24bcfcc1cbedfb2a2628be13a48b0 /test/CodeGen/Mips
parent1e3e869899468de2210f9777905340d907c814c6 (diff)
downloadexternal_llvm-5ffd24c49f6d78c166ee357424bf4e20f61af6bc.zip
external_llvm-5ffd24c49f6d78c166ee357424bf4e20f61af6bc.tar.gz
external_llvm-5ffd24c49f6d78c166ee357424bf4e20f61af6bc.tar.bz2
[mips] Remove android calling convention.
This calling convention was added just to handle functions which return vector of floats. The fix committed in r165585 solves the problem. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Mips')
-rw-r--r--test/CodeGen/Mips/return-vector-float4.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CodeGen/Mips/return-vector-float4.ll b/test/CodeGen/Mips/return-vector-float4.ll
deleted file mode 100644
index ae10f12..0000000
--- a/test/CodeGen/Mips/return-vector-float4.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llc -march=mipsel -mattr=+android < %s | FileCheck %s
-
-define <4 x float> @retvec4() nounwind readnone {
-entry:
-; CHECK: lwc1 $f0
-; CHECK: lwc1 $f2
-; CHECK: lwc1 $f1
-; CHECK: lwc1 $f3
-
- ret <4 x float> <float 1.000000e+00, float 2.000000e+00, float 3.000000e+00, float 4.000000e+00>
-}
-