diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-29 03:21:00 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-29 03:21:00 +0000 |
commit | 9806806f39986d13292baa75fe71021d41325a2d (patch) | |
tree | 86efeb4c5b8839f13a86cad9d5bc8361dae455ee /clang/test/CodeGen/arm-pnaclcall.c | |
parent | f2955aa3f20ab76162be2aa23512d8d175cbf34f (diff) | |
download | bcm5719-llvm-9806806f39986d13292baa75fe71021d41325a2d.tar.gz bcm5719-llvm-9806806f39986d13292baa75fe71021d41325a2d.zip |
Modify the tests for the (sorted) order that the attributes come out as now.
llvm-svn: 173762
Diffstat (limited to 'clang/test/CodeGen/arm-pnaclcall.c')
-rw-r--r-- | clang/test/CodeGen/arm-pnaclcall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/arm-pnaclcall.c b/clang/test/CodeGen/arm-pnaclcall.c index 50259957eb1..009c80b0da3 100644 --- a/clang/test/CodeGen/arm-pnaclcall.c +++ b/clang/test/CodeGen/arm-pnaclcall.c @@ -12,7 +12,7 @@ typedef struct { // CHECK: define i32 @f48(%struct.s1* byval %s) int __attribute__((pnaclcall)) f48(s1 s) { return s.a; } -// CHECK: define void @f49(%struct.s1* noalias sret %agg.result) +// CHECK: define void @f49(%struct.s1* sret noalias %agg.result) s1 __attribute__((pnaclcall)) f49() { s1 s; s.a = s.b = 1; return s; } union simple_union { |