From a560226aff4bca915a5e230ac4c70cc5f6517de2 Mon Sep 17 00:00:00 2001 From: zeroc Date: Mon, 25 Mar 2024 19:24:36 +0800 Subject: [PATCH] Fixed a typo in the tools/StaticMain.cpp --- tools/StaticMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/StaticMain.cpp b/tools/StaticMain.cpp index 23831fc6..b179af65 100644 --- a/tools/StaticMain.cpp +++ b/tools/StaticMain.cpp @@ -49,7 +49,7 @@ static void countStaticCalls(Module &M) { ModuleAnalysisManager MAM; MAM.registerPass([&] { return StaticCallCounter(); }); - // Register all available module analysis passes defined in PassRegisty.def. + // Register all available module analysis passes defined in PassRegistry.def. // We only really need PassInstrumentationAnalysis (which is pulled by // default by PassBuilder), but to keep this concise, let PassBuilder do all // the _heavy-lifting_.