diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-22 21:46:50 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-22 21:46:50 +0000 |
commit | de8b1ad04ce97f84b9d78e595cd6de205fbaab18 (patch) | |
tree | 9f517c56342af5ede428bbf01f910077929e375c /base | |
parent | e8eb572be1744d1f5f5e8c2295d335dc27d0a316 (diff) | |
download | chromium_src-de8b1ad04ce97f84b9d78e595cd6de205fbaab18.zip chromium_src-de8b1ad04ce97f84b9d78e595cd6de205fbaab18.tar.gz chromium_src-de8b1ad04ce97f84b9d78e595cd6de205fbaab18.tar.bz2 |
roll clang 184830:186332
* more precise -Wlogical-not-parentheses
* fixes codegen issue encountered by webrtc
BUG=262248
R=hans@chromium.org, mark@chromium.org
Review URL: https://codereview.chromium.org/19871002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/process/memory_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/process/memory_unittest.cc b/base/process/memory_unittest.cc index 8022301..a1f3052 100644 --- a/base/process/memory_unittest.cc +++ b/base/process/memory_unittest.cc @@ -131,7 +131,7 @@ TEST(ProcessMemoryTest, MacMallocFailureDoesNotTerminate) { TEST(ProcessMemoryTest, MacTerminateOnHeapCorruption) { // Assert that freeing an unallocated pointer will crash the process. - char buf[3]; + char buf[9]; asm("" : "=r" (buf)); // Prevent clang from being too smart. #if ARCH_CPU_64_BITS // On 64 bit Macs, the malloc system automatically abort()s on heap corruption |