2013-12-05 22:02:29 +00:00
|
|
|
//===- llvm-cov.cpp - LLVM coverage tool ----------------------------------===//
|
2011-09-28 18:50:00 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-07-28 18:03:51 +00:00
|
|
|
/// \brief The main function for the gcov compatible coverage tool
|
|
|
|
int gcov_main(int argc, const char **argv);
|
2011-09-28 18:50:00 +00:00
|
|
|
|
2014-07-28 18:03:51 +00:00
|
|
|
int main(int argc, const char **argv) {
|
|
|
|
return gcov_main(argc, argv);
|
2011-09-28 18:50:00 +00:00
|
|
|
}
|