diff options
author | Reid Kleckner <rnk@google.com> | 2019-04-29 23:05:47 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-04-29 23:05:47 +0000 |
commit | 1808c02c155eb562e6cc7bcc43cb04ee225cf1d5 (patch) | |
tree | b90f3de7d039b92c40111ada0318cab601de9189 /clang/test/CodeGenObjC | |
parent | 2ac6aca8af70ee4496667587df58f467f5240252 (diff) | |
download | bcm5719-llvm-1808c02c155eb562e6cc7bcc43cb04ee225cf1d5.tar.gz bcm5719-llvm-1808c02c155eb562e6cc7bcc43cb04ee225cf1d5.zip |
Re-land r359250, [COFF] Statically link certain runtime library functions
Reverts the revert of r359251, this time with fixed tests.
Differential Revision: https://reviews.llvm.org/D55229
llvm-svn: 359513
Diffstat (limited to 'clang/test/CodeGenObjC')
-rw-r--r-- | clang/test/CodeGenObjC/gnu-init.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenObjC/gnu-init.m b/clang/test/CodeGenObjC/gnu-init.m index 32db49fdf90..6d562b80cb9 100644 --- a/clang/test/CodeGenObjC/gnu-init.m +++ b/clang/test/CodeGenObjC/gnu-init.m @@ -100,6 +100,6 @@ // Check our load function is in a comdat. // CHECK-WIN: define linkonce_odr hidden void @.objcv2_load_function() comdat { -// Make sure we have dllimport on the load function -// CHECK-WIN: declare dllimport void @__objc_load +// Make sure we do not have dllimport on the load function +// CHECK-WIN: declare dso_local void @__objc_load |