From: Richard Trieu Date: Tue, 15 Apr 2014 01:06:38 +0000 (+0000) Subject: Fix typo from r206232 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4c88a69c2acd2057b0ec032b84cca14d447015f;p=clang Fix typo from r206232 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206234 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/AnalysisDeclContext.cpp b/lib/Analysis/AnalysisDeclContext.cpp index ef9ce56c9b..fa4bd33fa1 100644 --- a/lib/Analysis/AnalysisDeclContext.cpp +++ b/lib/Analysis/AnalysisDeclContext.cpp @@ -190,7 +190,7 @@ CFG *AnalysisDeclContext::getCFG() { if (PM) addParentsForSyntheticStmts(cfg.get(), *PM); - // The Obersver should only observe one build of the CFG. + // The Observer should only observe one build of the CFG. getCFGBuildOptions().Observer = 0; } return cfg.get(); @@ -209,7 +209,7 @@ CFG *AnalysisDeclContext::getUnoptimizedCFG() { if (PM) addParentsForSyntheticStmts(completeCFG.get(), *PM); - // The Obersver should only observe one build of the CFG. + // The Observer should only observe one build of the CFG. getCFGBuildOptions().Observer = 0; } return completeCFG.get();