r206234 - Fix typo from r206232

Richard Trieu rtrieu at google.com
Mon Apr 14 18:06:38 PDT 2014


Author: rtrieu
Date: Mon Apr 14 20:06:38 2014
New Revision: 206234

URL: http://llvm.org/viewvc/llvm-project?rev=206234&view=rev
Log:
Fix typo from r206232

Modified:
    cfe/trunk/lib/Analysis/AnalysisDeclContext.cpp

Modified: cfe/trunk/lib/Analysis/AnalysisDeclContext.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/AnalysisDeclContext.cpp?rev=206234&r1=206233&r2=206234&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/AnalysisDeclContext.cpp (original)
+++ cfe/trunk/lib/Analysis/AnalysisDeclContext.cpp Mon Apr 14 20:06:38 2014
@@ -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::getUnoptimized
     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();





More information about the cfe-commits mailing list