Files
revng-revng/lib/EarlyFunctionAnalysis/ControlFlowGraphCache.cpp
T
2024-06-20 10:24:51 +02:00

17 lines
667 B
C++

//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/EarlyFunctionAnalysis/ControlFlowGraphCache.h"
char ControlFlowGraphCachePass::ID = '_';
llvm::AnalysisKey ControlFlowGraphCacheAnalysis::Key;
static llvm::RegisterPass<ControlFlowGraphCachePass> _("metadata-cache",
"Create metadata cache "
"to be "
"used by later passes",
true,
true);