//===-- flags.cpp -----------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "flags.h" #include "common.h" #include "flags_parser.h" #include "scudo/interface.h" namespace scudo { Flags *getFlags() { … } void Flags::setDefaults() { … } void registerFlags(FlagParser *Parser, Flags *F) { … } static const char *getCompileDefinitionScudoDefaultOptions() { … } static const char *getScudoDefaultOptions() { … } void initFlags() { … } } // namespace scudo