diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 10:16:10 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2012-09-27 10:16:10 +0000 |
commit | 33b5baf189bc2d866d69c1c81908d2b37dce79ad (patch) | |
tree | 0cc0210d5e5cb11c0164c7e3f40e7d6cfc2d61dc /clang/lib/Sema/AnalysisBasedWarnings.cpp | |
parent | 91ce36c98668d1f3be0fe4a3b92aba86556c949f (diff) | |
download | bcm5719-llvm-33b5baf189bc2d866d69c1c81908d2b37dce79ad.tar.gz bcm5719-llvm-33b5baf189bc2d866d69c1c81908d2b37dce79ad.zip |
Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. See: http://en.wikipedia.org/wiki/If_and_only_if Commit 164766
llvm-svn: 164769
Diffstat (limited to 'clang/lib/Sema/AnalysisBasedWarnings.cpp')
-rw-r--r-- | clang/lib/Sema/AnalysisBasedWarnings.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Sema/AnalysisBasedWarnings.cpp b/clang/lib/Sema/AnalysisBasedWarnings.cpp index 2b7d4becd90..a3aee9afe08 100644 --- a/clang/lib/Sema/AnalysisBasedWarnings.cpp +++ b/clang/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 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 +/// \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 /// statement but we may return. We assume that functions not marked noreturn /// will return. static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { |