#include "builtin.h"
 #include "check.h"
 
-bool nofp;
+bool no_fp, no_unreachable;
 
 static const char * const check_usage[] = {
        "objtool check [<options>] file.o",
 };
 
 const struct option check_options[] = {
-       OPT_BOOLEAN('f', "no-fp", &nofp, "Skip frame pointer validation"),
+       OPT_BOOLEAN('f', "no-fp", &no_fp, "Skip frame pointer validation"),
+       OPT_BOOLEAN('u', "no-unreachable", &no_unreachable, "Skip 'unreachable instruction' warnings"),
        OPT_END(),
 };
 
 
        objname = argv[0];
 
-       return check(objname, nofp, false);
+       return check(objname, no_fp, no_unreachable, false);
 }
 
 };
 
 const char *objname;
-static bool nofp;
+static bool no_fp;
 struct cfi_state initial_func_cfi;
 
 struct instruction *find_insn(struct objtool_file *file,
        return next;
 }
 
-static bool gcov_enabled(struct objtool_file *file)
-{
-       struct section *sec;
-       struct symbol *sym;
-
-       for_each_sec(file, sec)
-               list_for_each_entry(sym, &sec->symbol_list, list)
-                       if (!strncmp(sym->name, "__gcov_.", 8))
-                               return true;
-
-       return false;
-}
-
 #define func_for_each_insn(file, func, insn)                           \
        for (insn = find_insn(file, func->sec, func->offset);           \
             insn && &insn->list != &file->insn_list &&                 \
                                regs[CFI_BP].base = CFI_BP;
                                regs[CFI_BP].offset = -state->stack_size;
                                state->bp_scratch = false;
-                       } else if (!nofp) {
+                       } else if (!no_fp) {
 
                                WARN_FUNC("unknown stack-related register move",
                                          insn->sec, insn->offset);
                }
 
                /* detect when asm code uses rbp as a scratch register */
-               if (!nofp && insn->func && op->src.reg == CFI_BP &&
+               if (!no_fp && insn->func && op->src.reg == CFI_BP &&
                    cfa->base != CFI_BP)
                        state->bp_scratch = true;
                break;
 
                        /* fallthrough */
                case INSN_CALL_DYNAMIC:
-                       if (!nofp && func && !has_valid_stack_frame(&state)) {
+                       if (!no_fp && func && !has_valid_stack_frame(&state)) {
                                WARN_FUNC("call without frame pointer save/setup",
                                          sec, insn->offset);
                                return 1;
                if (insn->visited || ignore_unreachable_insn(insn))
                        continue;
 
-               /*
-                * gcov produces a lot of unreachable instructions.  If we get
-                * an unreachable warning and the file has gcov enabled, just
-                * ignore it, and all other such warnings for the file.  Do
-                * this here because this is an expensive function.
-                */
-               if (gcov_enabled(file))
-                       return 0;
-
                WARN_FUNC("unreachable instruction", insn->sec, insn->offset);
                return 1;
        }
        elf_close(file->elf);
 }
 
-int check(const char *_objname, bool _nofp, bool orc)
+int check(const char *_objname, bool _no_fp, bool no_unreachable, bool orc)
 {
        struct objtool_file file;
        int ret, warnings = 0;
 
        objname = _objname;
-       nofp = _nofp;
+       no_fp = _no_fp;
 
        file.elf = elf_open(objname, orc ? O_RDWR : O_RDONLY);
        if (!file.elf)
        file.whitelist = find_section_by_name(file.elf, ".discard.func_stack_frame_non_standard");
        file.rodata = find_section_by_name(file.elf, ".rodata");
        file.c_file = find_section_by_name(file.elf, ".comment");
-       file.ignore_unreachables = false;
+       file.ignore_unreachables = no_unreachable;
        file.hints = false;
 
        arch_initial_func_cfi_state(&initial_func_cfi);