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 | 85ab57ac5de11a891dcd44159c310a50ca54b80f (patch) | |
tree | 00dd7eb4ce7c2fd74e124cdcae532c5cde44a9c5 /clang/test/CodeGen/ms-declspecs.c | |
parent | 1c7cc8ae90b05234329671db09f52f71b3e7dfa9 (diff) | |
download | bcm5719-llvm-85ab57ac5de11a891dcd44159c310a50ca54b80f.tar.gz bcm5719-llvm-85ab57ac5de11a891dcd44159c310a50ca54b80f.zip |
Update the tests.
This update coincides with r174110. That change ordered the attributes
alphabetically.
llvm-svn: 174111
Diffstat (limited to 'clang/test/CodeGen/ms-declspecs.c')
-rw-r--r-- | clang/test/CodeGen/ms-declspecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/ms-declspecs.c b/clang/test/CodeGen/ms-declspecs.c index 91862a73b09..7158e28f0e1 100644 --- a/clang/test/CodeGen/ms-declspecs.c +++ b/clang/test/CodeGen/ms-declspecs.c @@ -8,14 +8,14 @@ union { struct S s; } u; // CHECK: @u = {{.*}}zeroinitializer, align 16 -// CHECK: define void @t3() nounwind noinline naked { +// CHECK: define void @t3() naked noinline nounwind { __declspec(naked) void t3() {} // CHECK: define void @t22() nounwind void __declspec(nothrow) t22(); void t22() {} -// CHECK: define void @t2() nounwind noinline { +// CHECK: define void @t2() noinline nounwind { __declspec(noinline) void t2() {} // CHECK: call void @f20_t() |