1
0
mirror of https://github.com/exaloop/codon.git synced 2025-06-03 15:03:52 +08:00
codon/compiler/sir/analyze/analysis.cpp
2021-09-27 14:02:44 -04:00

16 lines
300 B
C++

#include "analysis.h"
#include "sir/transform/manager.h"
namespace seq {
namespace ir {
namespace analyze {
const Result *Analysis::doGetAnalysis(const std::string &key) {
return manager ? manager->getAnalysisResult(key) : nullptr;
}
} // namespace analyze
} // namespace ir
} // namespace seq