From 17ed55c267b0654748deac56a647a55e617561b0 Mon Sep 17 00:00:00 2001 From: James Molloy Date: Tue, 15 Sep 2015 10:44:06 +0000 Subject: [PATCH] [GlobalsAA] Disable globals-aa by default Several issues have been found with it - disabling in the meantime. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247674 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/PassManagerBuilder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/IPO/PassManagerBuilder.cpp b/lib/Transforms/IPO/PassManagerBuilder.cpp index 6b113ff9b7f..fcb62db06e9 100644 --- a/lib/Transforms/IPO/PassManagerBuilder.cpp +++ b/lib/Transforms/IPO/PassManagerBuilder.cpp @@ -95,7 +95,7 @@ static cl::opt EnableLoopDistribute( cl::desc("Enable the new, experimental LoopDistribution Pass")); static cl::opt EnableNonLTOGlobalsModRef( - "enable-non-lto-gmr", cl::init(true), cl::Hidden, + "enable-non-lto-gmr", cl::init(false), cl::Hidden, cl::desc( "Enable the GlobalsModRef AliasAnalysis outside of the LTO pipeline.")); -- 2.34.1