aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/mips-vector-return.c
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-31 23:17:12 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-31 23:17:12 +0000
commit5e31474b9c8348e8d0404264ae6a8775e34df6ac (patch)
tree2f4f140ff876b8e400e1de7ff98facbf909baa2b /test/CodeGen/mips-vector-return.c
parentf843a580c4a54ca147f22422ee8ccfd2347784fc (diff)
Update the tests.
This update coincides with r174110. That change ordered the attributes alphabetically. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/mips-vector-return.c')
-rw-r--r--test/CodeGen/mips-vector-return.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/mips-vector-return.c b/test/CodeGen/mips-vector-return.c
index c2aaf810a4..0bff969690 100644
--- a/test/CodeGen/mips-vector-return.c
+++ b/test/CodeGen/mips-vector-return.c
@@ -8,14 +8,14 @@ typedef float v4sf __attribute__ ((__vector_size__ (16)));
typedef double v4df __attribute__ ((__vector_size__ (32)));
typedef int v4i32 __attribute__ ((__vector_size__ (16)));
-// O32: define void @test_v4sf(<4 x float>* sret noalias nocapture
+// O32: define void @test_v4sf(<4 x float>* noalias nocapture sret
// N64: define { i64, i64 } @test_v4sf
v4sf test_v4sf(float a) {
return (v4sf){0.0f, a, 0.0f, 0.0f};
}
-// O32: define void @test_v4df(<4 x double>* sret noalias nocapture
-// N64: define void @test_v4df(<4 x double>* sret noalias nocapture
+// O32: define void @test_v4df(<4 x double>* noalias nocapture sret
+// N64: define void @test_v4df(<4 x double>* noalias nocapture sret
v4df test_v4df(double a) {
return (v4df){0.0, a, 0.0, 0.0};
}