diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2018-02-23 18:09:29 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2018-02-23 18:09:29 +0000 |
commit | 43ce3a3a4d83071eb3acfe21cba4f051d267674a (patch) | |
tree | 0613838e3de14d5422edbdb0bedc2e52bbf1030c /clang/test/CodeGen/windows-struct-abi.c | |
parent | 967cb19146d24464d2a3691761f893e72253eb8e (diff) | |
download | bcm5719-llvm-43ce3a3a4d83071eb3acfe21cba4f051d267674a.tar.gz bcm5719-llvm-43ce3a3a4d83071eb3acfe21cba4f051d267674a.zip |
Revert "Start setting dso_local for COFF."
This reverts commit r325915.
It will take some time to fix the failures on a windows host.
llvm-svn: 325929
Diffstat (limited to 'clang/test/CodeGen/windows-struct-abi.c')
-rw-r--r-- | clang/test/CodeGen/windows-struct-abi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/CodeGen/windows-struct-abi.c b/clang/test/CodeGen/windows-struct-abi.c index 5ffc4fad647..1631f61db90 100644 --- a/clang/test/CodeGen/windows-struct-abi.c +++ b/clang/test/CodeGen/windows-struct-abi.c @@ -6,11 +6,11 @@ struct f1 { struct f1 return_f1(void) { while (1); } -// CHECK: define dso_local i32 @return_f1() +// CHECK: define i32 @return_f1() void receive_f1(struct f1 a0) { } -// CHECK: define dso_local void @receive_f1(float %a0.0) +// CHECK: define void @receive_f1(float %a0.0) struct f2 { float f; @@ -19,11 +19,11 @@ struct f2 { struct f2 return_f2(void) { while (1); } -// CHECK: define dso_local i64 @return_f2() +// CHECK: define i64 @return_f2() void receive_f2(struct f2 a0) { } -// CHECK: define dso_local void @receive_f2(float %a0.0, float %a0.1) +// CHECK: define void @receive_f2(float %a0.0, float %a0.1) struct f4 { float f; @@ -34,9 +34,9 @@ struct f4 { struct f4 return_f4(void) { while (1); } -// CHECK: define dso_local void @return_f4(%struct.f4* noalias sret %agg.result) +// CHECK: define void @return_f4(%struct.f4* noalias sret %agg.result) void receive_f4(struct f4 a0) { } -// CHECK: define dso_local void @receive_f4(float %a0.0, float %a0.1, float %a0.2, float %a0.3) +// CHECK: define void @receive_f4(float %a0.0, float %a0.1, float %a0.2, float %a0.3) |