From 90d238ce8aa68c4ecb9a8d038ba09f263acf4305 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Fri, 18 Feb 2011 02:59:21 +0000 Subject: [PATCH] Make -disable-simplify-libcalls work with -std-compile-opts git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125824 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/opt/opt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 64c08ab56af..0a945df7f7b 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -427,7 +427,7 @@ void AddStandardCompilePasses(PassManagerBase &PM) { /*OptimizeSize=*/ false, /*UnitAtATime=*/ true, /*UnrollLoops=*/ true, - /*SimplifyLibCalls=*/ true, + !DisableSimplifyLibCalls, /*HaveExceptions=*/ true, InliningPass); } -- 2.34.1