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
This commit is contained in:
Peter Collingbourne 2011-02-18 02:59:21 +00:00
parent 5ad596f9d2
commit 90d238ce8a

View File

@ -427,7 +427,7 @@ void AddStandardCompilePasses(PassManagerBase &PM) {
/*OptimizeSize=*/ false,
/*UnitAtATime=*/ true,
/*UnrollLoops=*/ true,
/*SimplifyLibCalls=*/ true,
!DisableSimplifyLibCalls,
/*HaveExceptions=*/ true,
InliningPass);
}