diff options
| author | Andreas Gampe <agampe@google.com> | 2018-05-22 20:54:14 +0000 |
|---|---|---|
| committer | Andreas Gampe <agampe@google.com> | 2018-05-22 20:54:14 +0000 |
| commit | 8b362a87d52a6668ffd2283ef6ffc274315f41c8 (patch) | |
| tree | 14b187cd0b4afde501b9cc7a9dc82c997362e888 /cmdline | |
| parent | 8268cb677bd92bfbcfec7e803775c29687494e53 (diff) | |
| download | art-8b362a87d52a6668ffd2283ef6ffc274315f41c8.tar.gz art-8b362a87d52a6668ffd2283ef6ffc274315f41c8.tar.bz2 art-8b362a87d52a6668ffd2283ef6ffc274315f41c8.zip | |
Revert "Remove support for Valgrind in ART."
This reverts commit 8268cb677bd92bfbcfec7e803775c29687494e53.
Reason for revert: ASAN failures
Change-Id: I7e66d3f3fb461ae4f6dea6ec7d506b7dface3402
Test: SANITIZE_HOST=address m test-art-host
Bug: 77856586
Bug: 29282211
Diffstat (limited to 'cmdline')
| -rw-r--r-- | cmdline/unit.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmdline/unit.h b/cmdline/unit.h index f73981fbd3..ad6a03d12f 100644 --- a/cmdline/unit.h +++ b/cmdline/unit.h @@ -21,9 +21,8 @@ namespace art { // Used for arguments that simply indicate presence (e.g. "-help") without any values. struct Unit { - // Historical note: We specified a user-defined constructor to avoid - // 'Conditional jump or move depends on uninitialised value(s)' errors - // when running Valgrind. + // Avoid 'Conditional jump or move depends on uninitialised value(s)' errors + // when running valgrind by specifying a user-defined constructor. Unit() {} Unit(const Unit&) = default; ~Unit() {} |
