r261285 - Fix my typo from r261278

Richard Trieu via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 18 16:15:51 PST 2016


Author: rtrieu
Date: Thu Feb 18 18:15:50 2016
New Revision: 261285

URL: http://llvm.org/viewvc/llvm-project?rev=261285&view=rev
Log:
Fix my typo from r261278

Modified:
    cfe/trunk/lib/Sema/SemaExpr.cpp

Modified: cfe/trunk/lib/Sema/SemaExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaExpr.cpp?rev=261285&r1=261284&r2=261285&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExpr.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExpr.cpp Thu Feb 18 18:15:50 2016
@@ -9898,7 +9898,7 @@ void Sema::DiagnoseCommaOperator(const E
   // The whitelisted locations are the initialization and increment portions
   // of a for loop.  The additional checks are on the condition of
   // if statements, do/while loops, and for loops.
-  const unsigned ForIncreamentFlags =
+  const unsigned ForIncrementFlags =
       Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope;
   const unsigned ForInitFlags = Scope::ControlScope | Scope::DeclScope;
   const unsigned ScopeFlags = getCurScope()->getFlags();




More information about the cfe-commits mailing list