mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
35822f7171
The gcov compatible code is moved to its own file and llvm-cov is updated to be a wrapper that always calls the gcov main function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214107 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
695 B
C++
20 lines
695 B
C++
//===- 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);
|
|
}
|