blob: 94e653d4d230cb7ded87fbecefe3d0e2a7eb139a [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06002/*
3 * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06004 */
5#ifndef _BUILTIN_H
6#define _BUILTIN_H
7
Peter Zijlstra43a45252018-01-16 17:16:32 +01008#include <subcmd/parse-options.h>
9
10extern const struct option check_options[];
Peter Zijlstra0f8532c2021-12-04 14:43:42 +010011extern bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess, stats,
Sami Tolvanena46cc202022-08-02 11:30:07 -070012 validate_dup, vmlinux, mcount, noinstr, sls, unret, rethunk;
Peter Zijlstra43a45252018-01-16 17:16:32 +010013
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060014extern int cmd_check(int argc, const char **argv);
Josh Poimboeuf627fce12017-07-11 10:33:42 -050015extern int cmd_orc(int argc, const char **argv);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060016
17#endif /* _BUILTIN_H */