diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 09:57:10 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 09:57:10 +0000 |
commit | 94ff8e1f57c6382d91d0de981a4f311509d83e37 (patch) | |
tree | eb4d5bfaa1d965936217836ef85abf9e146baab7 /lib/Sema/AnalysisBasedWarnings.cpp | |
parent | 7836011482bc26dfebf15df4fd993d07b607fbcf (diff) |
Fix a typo 'iff' => 'if'
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164766 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/AnalysisBasedWarnings.cpp')
-rw-r--r-- | lib/Sema/AnalysisBasedWarnings.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Sema/AnalysisBasedWarnings.cpp b/lib/Sema/AnalysisBasedWarnings.cpp index a3aee9afe0..2b7d4becd9 100644 --- a/lib/Sema/AnalysisBasedWarnings.cpp +++ b/lib/Sema/AnalysisBasedWarnings.cpp @@ -87,10 +87,10 @@ enum ControlFlowKind { /// CheckFallThrough - Check that we don't fall off the end of a /// Statement that should return a value. /// -/// \returns AlwaysFallThrough iff we always fall off the end of the statement, -/// MaybeFallThrough iff we might or might not fall off the end, -/// NeverFallThroughOrReturn iff we never fall off the end of the statement or -/// return. We assume NeverFallThrough iff we never fall off the end of the +/// \returns AlwaysFallThrough if we always fall off the end of the statement, +/// MaybeFallThrough if we might or might not fall off the end, +/// NeverFallThroughOrReturn if we never fall off the end of the statement or +/// return. We assume NeverFallThrough if we never fall off the end of the /// statement but we may return. We assume that functions not marked noreturn /// will return. static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { |