1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Test case for r162008.

llvm-svn: 162009
This commit is contained in:
Akira Hatanaka 2012-08-16 03:48:41 +00:00
parent 623a561154
commit cbf9f98a06

View File

@ -0,0 +1,12 @@
; 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>
}