summaryrefslogtreecommitdiff
path: root/cmdline.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmdline.c')
-rw-r--r--cmdline.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/cmdline.c b/cmdline.c
index ec09ef14..9a354bfc 100644
--- a/cmdline.c
+++ b/cmdline.c
@@ -97,9 +97,6 @@ static void cmdlineHelp(const char *pname, struct custom_option *opts)
LOG_HELP(" Run the binary over a dynamic file, maximize total no. of branches:");
LOG_HELP_BOLD(" " PROG_NAME " --linux_perf_branch -- /usr/bin/tiffinfo -D "
_HF_FILE_PLACEHOLDER);
- LOG_HELP(" Run the binary over a dynamic file, maximize unique code blocks via BTS:");
- LOG_HELP_BOLD(" " PROG_NAME " --linux_perf_bts_block -- /usr/bin/tiffinfo -D "
- _HF_FILE_PLACEHOLDER);
LOG_HELP(" Run the binary over a dynamic file, maximize unique branches (edges) via BTS:");
LOG_HELP_BOLD(" " PROG_NAME " --linux_perf_bts_edge -- /usr/bin/tiffinfo -D "
_HF_FILE_PLACEHOLDER);
@@ -312,7 +309,6 @@ bool cmdlineParse(int argc, char *argv[], honggfuzz_t * hfuzz)
{{"linux_perf_ignore_above", required_argument, NULL, 0x503}, "Ignore perf events which report IPs above this address"},
{{"linux_perf_instr", no_argument, NULL, 0x510}, "Use PERF_COUNT_HW_INSTRUCTIONS perf"},
{{"linux_perf_branch", no_argument, NULL, 0x511}, "Use PERF_COUNT_HW_BRANCH_INSTRUCTIONS perf"},
- {{"linux_perf_bts_block", no_argument, NULL, 0x512}, "Use Intel BTS to count unique blocks"},
{{"linux_perf_bts_edge", no_argument, NULL, 0x513}, "Use Intel BTS to count unique edges"},
{{"linux_perf_ipt_block", no_argument, NULL, 0x514}, "Use Intel Processor Trace to count unique blocks (requires libipt.so)"},
{{"linux_perf_kernel_only", no_argument, NULL, 0x515}, "Gather kernel-only coverage with Intel PT and with Intel BTS"},
@@ -487,9 +483,6 @@ bool cmdlineParse(int argc, char *argv[], honggfuzz_t * hfuzz)
case 0x511:
hfuzz->dynFileMethod |= _HF_DYNFILE_BRANCH_COUNT;
break;
- case 0x512:
- hfuzz->dynFileMethod |= _HF_DYNFILE_BTS_BLOCK;
- break;
case 0x513:
hfuzz->dynFileMethod |= _HF_DYNFILE_BTS_EDGE;
break;