aboutsummaryrefslogtreecommitdiffstats
path: root/executor/executor_linux.cc
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-05-14 19:34:16 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-05-14 19:34:16 +0200
commitd2284dda4086f426af7ba2c595beff6c09204628 (patch)
tree2db63d3b8df8137fc976d7a70cd2bfbed6b47aa2 /executor/executor_linux.cc
parent86ea19e4c2dac00bda532edaf45507f10e9da575 (diff)
executor: revert coverage filtering
This causes very significant drop in corpus size. Needs additional debugging. Revert for now.
Diffstat (limited to 'executor/executor_linux.cc')
-rw-r--r--executor/executor_linux.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/executor/executor_linux.cc b/executor/executor_linux.cc
index 2df74250c..a6d264fde 100644
--- a/executor/executor_linux.cc
+++ b/executor/executor_linux.cc
@@ -199,7 +199,9 @@ bool cover_check(uint64 pc)
{
#if defined(__i386__) || defined(__x86_64__)
// Text/modules range for x86_64.
- return pc >= 0xffffffff80000000ull && pc < 0xffffffffff000000ull;
+ // This causes very significant drop in corpus size. Needs additional debugging.
+ // return pc >= 0xffffffff80000000ull && pc < 0xffffffffff000000ull;
+ return true;
#else
return true;
#endif