r259637 - Reduce initial Sema memory consumption by 400KB. By Elisavet Sakellari.
Axel Naumann via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 3 02:45:22 PST 2016
Author: axel
Date: Wed Feb 3 04:45:22 2016
New Revision: 259637
URL: http://llvm.org/viewvc/llvm-project?rev=259637&view=rev
Log:
Reduce initial Sema memory consumption by 400KB. By Elisavet Sakellari.
Modified:
cfe/trunk/lib/Sema/SemaOpenMP.cpp
Modified: cfe/trunk/lib/Sema/SemaOpenMP.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaOpenMP.cpp?rev=259637&r1=259636&r2=259637&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaOpenMP.cpp (original)
+++ cfe/trunk/lib/Sema/SemaOpenMP.cpp Wed Feb 3 04:45:22 2016
@@ -123,7 +123,7 @@ private:
CancelRegion(false), AssociatedLoops(1), InnerTeamsRegionLoc() {}
};
- typedef SmallVector<SharingMapTy, 64> StackTy;
+ typedef SmallVector<SharingMapTy, 4> StackTy;
/// \brief Stack of used declaration and their data-sharing attributes.
StackTy Stack;
More information about the cfe-commits
mailing list