diff options
author | Tim Northover <tnorthover@apple.com> | 2019-05-29 19:13:29 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2019-05-29 19:13:29 +0000 |
commit | 45e8cc6639e9d7dbc900ed35fdfe46c02c4eb298 (patch) | |
tree | 60e26b399c26fe71793935883223bcfa4b8b3c39 /clang/test/CodeGen/aapcs-align.cpp | |
parent | 6e07f16fae605c42014aa4f1f2babf3e7767c95c (diff) | |
download | bcm5719-llvm-45e8cc6639e9d7dbc900ed35fdfe46c02c4eb298.tar.gz bcm5719-llvm-45e8cc6639e9d7dbc900ed35fdfe46c02c4eb298.zip |
LLVM IR: update Clang tests for byval being a typed attribute.
Since byval is now a typed attribute it gets sorted slightly differently by
LLVM when the order of attributes is being canonicalized. This updates the few
Clang tests that depend on the old order.
llvm-svn: 362013
Diffstat (limited to 'clang/test/CodeGen/aapcs-align.cpp')
-rw-r--r-- | clang/test/CodeGen/aapcs-align.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/aapcs-align.cpp b/clang/test/CodeGen/aapcs-align.cpp index 40fba782352..bcc4604d742 100644 --- a/clang/test/CodeGen/aapcs-align.cpp +++ b/clang/test/CodeGen/aapcs-align.cpp @@ -95,8 +95,8 @@ void g4() { f4m(1, 2, 3, 4, 5, s); } // CHECK: define void @g4 -// CHECK: call void @f4(i32 1, %struct.SF16* byval nonnull align 8 -// CHECK: call void @f4m(i32 1, i32 2, i32 3, i32 4, i32 5, %struct.SF16* byval nonnull align 8 +// CHECK: call void @f4(i32 1, %struct.SF16* nonnull byval align 8 +// CHECK: call void @f4m(i32 1, i32 2, i32 3, i32 4, i32 5, %struct.SF16* nonnull byval align 8 // CHECK: declare void @f4(i32, %struct.SF16* byval align 8) // CHECK: declare void @f4m(i32, i32, i32, i32, i32, %struct.SF16* byval align 8) |