aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/stdcall-fastcall.c
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-02-15 05:25:49 +0000
committerBill Wendling <isanbard@gmail.com>2013-02-15 05:25:49 +0000
commitc1ea4b96adca4767991bb0a7b21052cef4db059c (patch)
tree2f931d43c78808e40661bc155ea06d433380325c /test/CodeGen/stdcall-fastcall.c
parentada0d224fcff5ff07c9dd846379592f92ccf5ee7 (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/stdcall-fastcall.c')
-rw-r--r--test/CodeGen/stdcall-fastcall.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/stdcall-fastcall.c b/test/CodeGen/stdcall-fastcall.c
index 89d7f5334a..d518178822 100644
--- a/test/CodeGen/stdcall-fastcall.c
+++ b/test/CodeGen/stdcall-fastcall.c
@@ -89,7 +89,7 @@ struct S2 {
void __attribute__((fastcall)) foo5(struct S2 y);
void bar5(struct S2 y) {
// CHECK: define void @bar5
- // CHECK: call x86_fastcallcc void @foo5(%struct.S2* align 4 byval %
+ // CHECK: call x86_fastcallcc void @foo5(%struct.S2* byval align 4 %
foo5(y);
}
@@ -117,7 +117,7 @@ void bar8(struct S1 a, int b) {
void __attribute__((fastcall)) foo9(struct S2 a, int b);
void bar9(struct S2 a, int b) {
// CHECK: define void @bar9
- // CHECK: call x86_fastcallcc void @foo9(%struct.S2* align 4 byval %{{.*}}, i32 %
+ // CHECK: call x86_fastcallcc void @foo9(%struct.S2* byval align 4 %{{.*}}, i32 %
foo9(a, b);
}