aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDecl.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-14 21:00:58 +0000
committerChris Lattner <sabre@nondot.org>2010-01-14 21:00:58 +0000
commit8a3da0fb0a6fddc1cc0cc2f04c69f39c6b96b8de (patch)
tree2753eff6bf776a36408be7e28fff545d19d09430 /lib/Sema/SemaDecl.cpp
parent26d18c1e1888e1b612addae6524c7a476a394a2a (diff)
fix grammaro
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r--lib/Sema/SemaDecl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp
index c54745f552..79bb1cb54a 100644
--- a/lib/Sema/SemaDecl.cpp
+++ b/lib/Sema/SemaDecl.cpp
@@ -1330,7 +1330,7 @@ static void MarkLive(CFGBlock *e, llvm::BitVector &live) {
/// CheckUnreachable - Check for unreachable code.
void Sema::CheckUnreachable(AnalysisContext &AC) {
// We avoid checking when there are errors, as the CFG won't faithfully match
- // the users code.
+ // the user's code.
if (getDiagnostics().hasErrorOccurred())
return;
if (Diags.getDiagnosticLevel(diag::warn_unreachable) == Diagnostic::Ignored)