diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-15 05:25:49 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-15 05:25:49 +0000 |
commit | c1ea4b96adca4767991bb0a7b21052cef4db059c (patch) | |
tree | 2f931d43c78808e40661bc155ea06d433380325c /test/CodeGen/struct-passing.c | |
parent | ada0d224fcff5ff07c9dd846379592f92ccf5ee7 (diff) |
Update testcases due to Attribute sorting improvements.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175253 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/struct-passing.c')
-rw-r--r-- | test/CodeGen/struct-passing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/struct-passing.c b/test/CodeGen/struct-passing.c index 0ef6cf009a..efb00efd53 100644 --- a/test/CodeGen/struct-passing.c +++ b/test/CodeGen/struct-passing.c @@ -20,5 +20,5 @@ void *ps[] = { f0, f1, f2, f3, f4, f5 }; // CHECK: declare i32 @f1() nounwind readonly // CHECK: declare void @f2({{.*}} sret) // CHECK: declare void @f3({{.*}} sret) -// CHECK: declare void @f4({{.*}} align 4 byval) -// CHECK: declare void @f5({{.*}} align 4 byval) +// CHECK: declare void @f4({{.*}} byval align 4) +// CHECK: declare void @f5({{.*}} byval align 4) |