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/Driver | |
| 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/Driver')
| -rw-r--r-- | clang/lib/Driver/Option.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Driver/Option.cpp b/clang/lib/Driver/Option.cpp index 6a3418fa178..3be141e61da 100644 --- a/clang/lib/Driver/Option.cpp +++ b/clang/lib/Driver/Option.cpp @@ -120,7 +120,7 @@ Arg *Option::accept(const ArgList &Args, unsigned &Index) const { return A; } case SeparateClass: - // Matches if this is an exact match. + // Matches iff this is an exact match. // FIXME: Avoid strlen. if (getName().size() != strlen(Args.getArgString(Index))) return 0; @@ -132,7 +132,7 @@ Arg *Option::accept(const ArgList &Args, unsigned &Index) const { return new Arg(getUnaliasedOption(), Index - 2, Args.getArgString(Index - 1)); case MultiArgClass: { - // Matches if this is an exact match. + // Matches iff this is an exact match. // FIXME: Avoid strlen. if (getName().size() != strlen(Args.getArgString(Index))) return 0; |

