[PATCH] D91851: [compiler-rt] [emutls] Handle unused parameters in a compiler agnostic way
Martin Storsjö via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 1 00:08:20 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2e5aaf65a344: [compiler-rt] [emutls] Handle unused parameters in a compiler agnostic way (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91851/new/
https://reviews.llvm.org/D91851
Files:
compiler-rt/lib/builtins/emutls.c
Index: compiler-rt/lib/builtins/emutls.c
===================================================================
--- compiler-rt/lib/builtins/emutls.c
+++ compiler-rt/lib/builtins/emutls.c
@@ -182,9 +182,10 @@
}
}
-#pragma warning(push)
-#pragma warning(disable : 4100)
static BOOL CALLBACK emutls_init(PINIT_ONCE p0, PVOID p1, PVOID *p2) {
+ (void)p0;
+ (void)p1;
+ (void)p2;
emutls_mutex =
(LPCRITICAL_SECTION)_aligned_malloc(sizeof(CRITICAL_SECTION), 16);
if (!emutls_mutex) {
@@ -251,8 +252,6 @@
#endif // __ATOMIC_RELEASE
-#pragma warning(pop)
-
#endif // _WIN32
static size_t emutls_num_object = 0; // number of allocated TLS objects
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D91851.308554.patch
Type: text/x-patch
Size: 668 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20201201/a699bca4/attachment.bin>
More information about the llvm-commits
mailing list