aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Analysis/AnalysisDeclContext.cpp
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2014-04-15 01:06:38 +0000
committerRichard Trieu <rtrieu@google.com>2014-04-15 01:06:38 +0000
commite729d9b598c807af2549125496e9abd240ee496c (patch)
tree43a906b18b74732f5569356ca84d682bbc0b255d /clang/lib/Analysis/AnalysisDeclContext.cpp
parentc6fa5db7470bd9126cde1e27c6fe792a20ca89b4 (diff)
downloadllvm-e729d9b598c807af2549125496e9abd240ee496c.zip
llvm-e729d9b598c807af2549125496e9abd240ee496c.tar.gz
llvm-e729d9b598c807af2549125496e9abd240ee496c.tar.bz2
Fix typo from r206232
llvm-svn: 206234
Diffstat (limited to 'clang/lib/Analysis/AnalysisDeclContext.cpp')
-rw-r--r--clang/lib/Analysis/AnalysisDeclContext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/AnalysisDeclContext.cpp b/clang/lib/Analysis/AnalysisDeclContext.cpp
index ef9ce56..fa4bd33 100644
--- a/clang/lib/Analysis/AnalysisDeclContext.cpp
+++ b/clang/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();