commit | 98115b7494a96dd0b8e6ece7ff5e50704038c906 | [log] [tgz] |
---|---|---|
author | Christopher Ferris <cferris@google.com> | Fri Jul 16 06:18:28 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Jul 16 06:18:28 2021 +0000 |
tree | 6badcd5a33ceebd727ae55f9ae4dfd09f35e948b | |
parent | 2e4be55966d0eb6d71260aa65b445141821644de [diff] | |
parent | a6035ecd416fc9e09098f5474df3a864d0e168c3 [diff] |
Merge "Avoid undefined compiler behavior"
diff --git a/libc/malloc_debug/tests/malloc_debug_system_tests.cpp b/libc/malloc_debug/tests/malloc_debug_system_tests.cpp index 9d33189..b20cef7 100644 --- a/libc/malloc_debug/tests/malloc_debug_system_tests.cpp +++ b/libc/malloc_debug/tests/malloc_debug_system_tests.cpp
@@ -463,7 +463,7 @@ exit(1000); } free(ptr); - thread_mask.fetch_or(1 << i); + thread_mask.fetch_or(1U << i); } }); malloc_thread.detach();