// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #ifndef EXECUTABLE_SEMANTICS_COMMON_TRACING_FLAG_H_ #define EXECUTABLE_SEMANTICS_COMMON_TRACING_FLAG_H_ namespace Carbon { // Program option to enable/disable tracing. extern bool tracing_output; } // namespace Carbon #endif // EXECUTABLE_SEMANTICS_COMMON_TRACING_FLAG_H_