blob: a32736f8d2a4724988903aa727a3f3f88681a0d5 [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 Zijlstraea242132019-02-25 12:50:09 +010011extern bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess;
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 */