tracing_flag.h 471 B

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