Rangeify a loop. NFC.
authorHans Wennborg <hans@hanshq.net>
Fri, 8 Apr 2016 20:46:09 +0000 (20:46 +0000)
committerHans Wennborg <hans@hanshq.net>
Fri, 8 Apr 2016 20:46:09 +0000 (20:46 +0000)
llvm-svn: 265846

llvm/lib/Target/X86/X86ISelLowering.cpp

index 2bc5f2a..4c2e54f 100644 (file)
@@ -16794,12 +16794,11 @@ X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
       // The 64 bit implementation of segmented stacks needs to clobber both r10
       // r11. This makes it impossible to use it along with nested parameters.
       const Function *F = MF.getFunction();
-
-      for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
-           I != E; ++I)
-        if (I->hasNestAttr())
+      for (const auto &A : F->args()) {
+        if (A.hasNestAttr())
           report_fatal_error("Cannot use segmented stacks with functions that "
                              "have nested arguments.");
+      }
     }
 
     const TargetRegisterClass *AddrRegClass = getRegClassFor(SPTy);