From a876013dc91bbd6bf4fe37c0d4cc7d1d5f5f4184 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Thu, 27 Sep 2012 09:57:10 +0000 Subject: Fix a typo 'iff' => 'if' llvm-svn: 164766 --- clang/lib/Driver/Option.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/lib/Driver/Option.cpp') 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; -- cgit v1.2.3