commit | 3042d8f9354c11d099ffb6162bf0db625558a5a4 | [log] [tgz] |
---|---|---|
author | Hans Wennborg <hans@chromium.org> | Fri Oct 27 07:04:36 2023 |
committer | Chromium LUCI CQ <chromium-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Oct 27 07:04:36 2023 |
tree | 78f1093c55708d5c6483a73610f832792b6495f9 | |
parent | b775b6ec6390c6ecf7d8db6a647be99ad7346f37 [diff] |
Make PartitionAllocPageAllocatorTest.InaccessiblePages work with latest Clang The compiler has realized the comparison in the code below must always be true: int* buffer0 = reinterpret_cast<int*>(buffer); int buffer0_contents = *buffer0; EXPECT_EQ(buffer0_contents, *buffer0); which causes it to optimize away the loads from the buffer, defeating the purpose of the test which is to catch the segfault. Adding a volatile qualifier forces the compiler to perform the load. Bug: 1495809 Change-Id: Iab1c5dcdf6cbc6c333ba35a8319fe35a37f91603 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4973973 Reviewed-by: Takashi Sakamoto <tasak@google.com> Commit-Queue: Hans Wennborg <hans@chromium.org> Cr-Commit-Position: refs/heads/main@{#1215977}
Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.
The project's web site is https://www.chromium.org.
To check out the source code locally, don't use git clone
! Instead, follow the instructions on how to get the code.
Documentation in the source is rooted in docs/README.md.
Learn how to Get Around the Chromium Source Code Directory Structure .
For historical reasons, there are some small top level directories. Now the guidance is that new top level directories are for product (e.g. Chrome, Android WebView, Ash). Even if these products have multiple executables, the code should be in subdirectories of the product.
If you found a bug, please file it at https://crbug.com/new.