blob: 75fa392d6f708ab984ac5a44e8aadec76af82b69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//===- llvm-cov.cpp - LLVM coverage tool ----------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// llvm-cov is a command line tools to analyze and report coverage information.
//
//===----------------------------------------------------------------------===//
/// \brief The main function for the gcov compatible coverage tool
int gcov_main(int argc, const char **argv);
int main(int argc, const char **argv) {
return gcov_main(argc, argv);
}
|