Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com> |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 4 | */ |
| 5 | #ifndef _BUILTIN_H |
| 6 | #define _BUILTIN_H |
| 7 | |
Peter Zijlstra | 43a4525 | 2018-01-16 17:16:32 +0100 | [diff] [blame] | 8 | #include <subcmd/parse-options.h> |
| 9 | |
| 10 | extern const struct option check_options[]; |
Peter Zijlstra | 0f8532c | 2021-12-04 14:43:42 +0100 | [diff] [blame] | 11 | extern bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess, stats, |
Sami Tolvanen | a46cc20 | 2022-08-02 11:30:07 -0700 | [diff] [blame] | 12 | validate_dup, vmlinux, mcount, noinstr, sls, unret, rethunk; |
Peter Zijlstra | 43a4525 | 2018-01-16 17:16:32 +0100 | [diff] [blame] | 13 | |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 14 | extern int cmd_check(int argc, const char **argv); |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 15 | extern int cmd_orc(int argc, const char **argv); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 16 | |
| 17 | #endif /* _BUILTIN_H */ |