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