From: Axel Naumann Date: Wed, 3 Feb 2016 10:45:22 +0000 (+0000) Subject: Reduce initial Sema memory consumption by 400KB. By Elisavet Sakellari. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d76083a6d01f842d48837c2b225598fed43bd4b;p=clang Reduce initial Sema memory consumption by 400KB. By Elisavet Sakellari. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@259637 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaOpenMP.cpp b/lib/Sema/SemaOpenMP.cpp index f61d959e89..b219e92ebe 100644 --- a/lib/Sema/SemaOpenMP.cpp +++ b/lib/Sema/SemaOpenMP.cpp @@ -123,7 +123,7 @@ private: CancelRegion(false), AssociatedLoops(1), InnerTeamsRegionLoc() {} }; - typedef SmallVector StackTy; + typedef SmallVector StackTy; /// \brief Stack of used declaration and their data-sharing attributes. StackTy Stack;