Removed LICM and GCSE.

llvm-svn: 19003
This commit is contained in:
Tanya Lattner 2004-12-16 23:07:36 +00:00
parent c3a7bd7d0c
commit 08e19bb412
1 changed files with 3 additions and 3 deletions

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.