blob: 85c979caa36779b5ddc5afb321e9f3c411d7a6ce [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 Zijlstrac4a33932020-03-10 18:57:41 +010011extern bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess, stats, validate_dup, vmlinux;
Peter Zijlstra43a45252018-01-16 17:16:32 +010012
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060013extern int cmd_check(int argc, const char **argv);
Josh Poimboeuf627fce12017-07-11 10:33:42 -050014extern int cmd_orc(int argc, const char **argv);
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060015
16#endif /* _BUILTIN_H */