xref: /OK3568_Linux_fs/kernel/tools/objtool/builtin.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0-or-later */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
4*4882a593Smuzhiyun  */
5*4882a593Smuzhiyun #ifndef _BUILTIN_H
6*4882a593Smuzhiyun #define _BUILTIN_H
7*4882a593Smuzhiyun 
8*4882a593Smuzhiyun #include <subcmd/parse-options.h>
9*4882a593Smuzhiyun 
10*4882a593Smuzhiyun extern const struct option check_options[];
11*4882a593Smuzhiyun extern bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess, stats,
12*4882a593Smuzhiyun             validate_dup, vmlinux, mcount, noinstr, sls, unret, rethunk;
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun extern int cmd_check(int argc, const char **argv);
15*4882a593Smuzhiyun extern int cmd_orc(int argc, const char **argv);
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #endif /* _BUILTIN_H */
18