Removed LICM and GCSE.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19003 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tanya Lattner 2004-12-16 23:07:36 +00:00
parent f1131b35af
commit 9fde12b747

View File

@ -179,9 +179,9 @@ SparcV9TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out
PM.add(createLowerSelectPass());
// Run basic LLVM dataflow optimizations, to clean up after pre-selection.
PM.add(createReassociatePass());
PM.add(createLICMPass());
PM.add(createGCSEPass());
//PM.add(createReassociatePass());
//PM.add(createLICMPass());
//PM.add(createGCSEPass());
// If the user's trying to read the generated code, they'll need to see the
// transformed input.