forked from OSchip/llvm-project
Reduce initial Sema memory consumption by 400KB. By Elisavet Sakellari.
llvm-svn: 259637
This commit is contained in:
parent
bff960a926
commit
323862e13c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue