aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
Diffstat (limited to 'executor')
-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