Reduce initial Sema memory consumption by 400KB. By Elisavet Sakellari.

llvm-svn: 259637
This commit is contained in:
Axel Naumann 2016-02-03 10:45:22 +00:00
parent bff960a926
commit 323862e13c
1 changed files with 1 additions and 1 deletions

View File

@ -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;