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 | a876013dc91bbd6bf4fe37c0d4cc7d1d5f5f4184 (patch) | |
tree | dc7a4a2b21e7ad3ba01c2d7383031f9bf1aac7b9 /clang/lib/Driver/Option.cpp | |
parent | b6879ce94cd24e4d76e60ad52c648edb5af221a5 (diff) | |
download | bcm5719-llvm-a876013dc91bbd6bf4fe37c0d4cc7d1d5f5f4184.tar.gz bcm5719-llvm-a876013dc91bbd6bf4fe37c0d4cc7d1d5f5f4184.zip |
Fix a typo 'iff' => 'if'
llvm-svn: 164766
Diffstat (limited to 'clang/lib/Driver/Option.cpp')
-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 3be141e61da..6a3418fa178 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 iff this is an exact match. + // Matches if 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 iff this is an exact match. + // Matches if this is an exact match. // FIXME: Avoid strlen. if (getName().size() != strlen(Args.getArgString(Index))) return 0; |