diff options
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r-- | tools/perf/builtin-annotate.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 555aefd7fe01..c5be28851f01 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c | |||
@@ -267,6 +267,12 @@ static const struct option options[] = { | |||
267 | OPT_BOOLEAN('P', "full-paths", &full_paths, | 267 | OPT_BOOLEAN('P', "full-paths", &full_paths, |
268 | "Don't shorten the displayed pathnames"), | 268 | "Don't shorten the displayed pathnames"), |
269 | OPT_STRING('c', "cpu", &cpu_list, "cpu", "list of cpus to profile"), | 269 | OPT_STRING('c', "cpu", &cpu_list, "cpu", "list of cpus to profile"), |
270 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", | ||
271 | "Look for files with symbols relative to this directory"), | ||
272 | OPT_BOOLEAN('0', "source", &symbol_conf.annotate_src, | ||
273 | "Interleave source code with assembly code (default)"), | ||
274 | OPT_BOOLEAN('0', "asm-raw", &symbol_conf.annotate_asm_raw, | ||
275 | "Display raw encoding of assembly instructions (default)"), | ||
270 | OPT_END() | 276 | OPT_END() |
271 | }; | 277 | }; |
272 | 278 | ||