diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-31 23:17:12 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-31 23:17:12 +0000 |
commit | 5e31474b9c8348e8d0404264ae6a8775e34df6ac (patch) | |
tree | 2f4f140ff876b8e400e1de7ff98facbf909baa2b /test/CodeGen/x86_32-arguments-realign.c | |
parent | f843a580c4a54ca147f22422ee8ccfd2347784fc (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/x86_32-arguments-realign.c')
-rw-r--r-- | test/CodeGen/x86_32-arguments-realign.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/x86_32-arguments-realign.c b/test/CodeGen/x86_32-arguments-realign.c index b08862ee43..8dca6c53f0 100644 --- a/test/CodeGen/x86_32-arguments-realign.c +++ b/test/CodeGen/x86_32-arguments-realign.c @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -w -fblocks -triple i386-apple-darwin9 -emit-llvm -o %t %s // RUN: FileCheck < %t %s -// CHECK: define void @f0(%struct.s0* byval align 4) +// CHECK: define void @f0(%struct.s0* align 4 byval) // CHECK: call void @llvm.memcpy.p0i8.p0i8.i32(i8* %{{.*}}, i8* %{{.*}}, i32 16, i32 4, i1 false) // CHECK: } struct s0 { long double a; }; |