Commit fe5a9748 authored by bruening's avatar bruening Committed by Commit bot

Disable warnings about unaddressable prefetches in Dr. Memory.

TBR=zhaoqin@chromium.org
BUG=223255
NOTRY=true

Review URL: https://codereview.chromium.org/894503002

Cr-Commit-Position: refs/heads/master@{#314049}
parent 53a28d00
...@@ -712,6 +712,9 @@ class DrMemory(BaseTool): ...@@ -712,6 +712,9 @@ class DrMemory(BaseTool):
# disable leak scan for now # disable leak scan for now
proc += ["-no_count_leaks", "-no_leak_scan"] proc += ["-no_count_leaks", "-no_leak_scan"]
# disable warnings about unaddressable prefetches
proc += ["-no_check_prefetch"]
# crbug.com/413215, no heap mismatch check for Windows release build binary # crbug.com/413215, no heap mismatch check for Windows release build binary
if common.IsWindows() and "Release" in self._options.build_dir: if common.IsWindows() and "Release" in self._options.build_dir:
proc += ["-no_check_delete_mismatch"] proc += ["-no_check_delete_mismatch"]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment