diff options
Diffstat (limited to 'test/CodeGen/ms-declspecs.c')
-rw-r--r-- | test/CodeGen/ms-declspecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ms-declspecs.c b/test/CodeGen/ms-declspecs.c index 91862a73b0..7158e28f0e 100644 --- a/test/CodeGen/ms-declspecs.c +++ b/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() |