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