s/FunctionMetadata/ControlFlowGraph/g

This commit is contained in:
Alessandro Di Federico
2024-06-07 17:25:52 +02:00
parent 276a6e0efb
commit b62bc8df91
22 changed files with 122 additions and 122 deletions
@@ -0,0 +1,16 @@
//
// 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);