From 6d76083a6d01f842d48837c2b225598fed43bd4b Mon Sep 17 00:00:00 2001 From: Axel Naumann Date: Wed, 3 Feb 2016 10:45:22 +0000 Subject: [PATCH] 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 --- lib/Sema/SemaOpenMP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0