diff options
Diffstat (limited to 'tools/objtool/builtin-check.c')
| -rw-r--r-- | tools/objtool/builtin-check.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c index 8b38b5d6fec7..38070f26105b 100644 --- a/tools/objtool/builtin-check.c +++ b/tools/objtool/builtin-check.c @@ -20,7 +20,7 @@  #include <objtool/objtool.h>  bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess, stats, -     validate_dup, vmlinux, mcount, noinstr, backup; +     validate_dup, vmlinux, mcount, noinstr, backup, sls;  static const char * const check_usage[] = {  	"objtool check [<options>] file.o", @@ -45,6 +45,7 @@ const struct option check_options[] = {  	OPT_BOOLEAN('l', "vmlinux", &vmlinux, "vmlinux.o validation"),  	OPT_BOOLEAN('M', "mcount", &mcount, "generate __mcount_loc"),  	OPT_BOOLEAN('B', "backup", &backup, "create .orig files before modification"), +	OPT_BOOLEAN('S', "sls", &sls, "validate straight-line-speculation"),  	OPT_END(),  };  | 
