diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-01-13 01:51:43 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-01-13 01:51:43 +0000 |
commit | 262a96edb436543227b9b5e49f95a082e1c73b5f (patch) | |
tree | 720e7eac81a23cc4396ffce7eca1c6403c0d2c79 /lib/CodeGen | |
parent | d9e385f411abc1ec41130d8010a9de4a93dd1042 (diff) | |
download | external_llvm-262a96edb436543227b9b5e49f95a082e1c73b5f.zip external_llvm-262a96edb436543227b9b5e49f95a082e1c73b5f.tar.gz external_llvm-262a96edb436543227b9b5e49f95a082e1c73b5f.tar.bz2 |
Disable opt-ext pass to unbreak the build for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93286 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 733995f..4ab6a94 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -325,7 +325,6 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM, /* allowDoubleDefs= */ true); if (OptLevel != CodeGenOpt::None) { - PM.add(createOptimizeExtsPass()); if (!DisableMachineLICM) PM.add(createMachineLICMPass()); if (!DisableMachineSink) |