mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
17 lines
529 B
C++
17 lines
529 B
C++
/// \brief Implementation of the statistics collection framework.
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/Support/CommandLine.h"
|
|
#include "revng/Support/Statistics.h"
|
|
|
|
namespace cl = llvm::cl;
|
|
|
|
cl::opt<bool> Statistics("statistics",
|
|
cl::desc("print statistics upon exit or "
|
|
"SIGINT. Use "
|
|
"this argument, ignore -stats."),
|
|
cl::cat(MainCategory));
|