]> granicus.if.org Git - clang/commitdiff
Driver: Fix thinko in Arg::hasArg.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 12 Mar 2009 08:45:11 +0000 (08:45 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 12 Mar 2009 08:45:11 +0000 (08:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66785 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/ArgList.cpp

index 6a056074b7c08be05d5278a24305e2c880c124b0..aaba406f14923d679ade778b694719592a30c7a5 100644 (file)
@@ -34,7 +34,7 @@ bool ArgList::hasArg(options::ID Id) const {
   // FIXME: Make search efficient?
 
   // FIXME: This needs to not require loading of the option.
-  for (const_iterator it = begin(), ie = end(); it != ie; ++ie)
+  for (const_iterator it = begin(), ie = end(); it != ie; ++it)
     if ((*it)->getOption().matches(Id))
       return true;