]> granicus.if.org Git - clang/commitdiff
Use DeclStmt::decl_iterator instead of walking the getNextDeclarator() chain.
authorTed Kremenek <kremenek@apple.com>
Fri, 8 Aug 2008 02:45:18 +0000 (02:45 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 8 Aug 2008 02:45:18 +0000 (02:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54501 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaStmt.cpp

index e743810ed41d30d144e567f2b1ec45029c7925c1..5065bb9bc6de609c1d9606397ba33873796855f0 100644 (file)
@@ -526,13 +526,13 @@ Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
   if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
     // C99 6.8.5p3: The declaration part of a 'for' statement shall only declare
     // identifiers for objects having storage class 'auto' or 'register'.
-    for (ScopedDecl *D = DS->getDecl(); D; D = D->getNextDeclarator()) {
-      VarDecl *VD = dyn_cast<VarDecl>(D);
+    for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
+         DI!=DE; ++DI) {
+      VarDecl *VD = dyn_cast<VarDecl>(*DI);
       if (VD && VD->isBlockVarDecl() && !VD->hasLocalStorage())
         VD = 0;
       if (VD == 0)
-        Diag(dyn_cast<ScopedDecl>(D)->getLocation(), 
-             diag::err_non_variable_decl_in_for);
+        Diag((*DI)->getLocation(), diag::err_non_variable_decl_in_for);
       // FIXME: mark decl erroneous!
     }
   }