[PATCH] [ASan][MIPS] Fix some tests failing on MIPS64
Alexey Samsonov
vonosmas at gmail.com
Fri Apr 24 11:21:43 PDT 2015
REPOSITORY
rL LLVM
================
Comment at: lib/asan/asan_flags.cc:157
@@ -156,3 +156,3 @@
// quarantine_size can not be used together with quarantine_size_mb.
- if (f->quarantine_size >= 0 && f->quarantine_size_mb >= 0) {
+ if (f->quarantine_size >= 0 && f->quarantine_size_mb != u32(-1)) {
Report("%s: please use either 'quarantine_size' (deprecated) or "
----------------
No. This quarantinze_size_mb is defined in asan_flags.inc and has type int.
http://reviews.llvm.org/D9246
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
More information about the llvm-commits
mailing list