ldc/gen/coverage.h
2015-04-07 22:11:02 +02:00

22 lines
676 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//===-- gen/coverage.h - Code Coverage Analysis -----------------*- C++ -*-===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains functions to generate code for code coverage analysis.
// The coverage analysis is enabled by the "-cov" commandline switch.
//
//===----------------------------------------------------------------------===//
#ifndef LDC_GEN_COVERAGE_H
#define LDC_GEN_COVERAGE_H
struct Loc;
void emitCoverageLinecountInc(Loc &loc);
#endif