1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Removing commented out lines.

llvm-svn: 19004
This commit is contained in:
Tanya Lattner 2004-12-16 23:13:16 +00:00
parent c537a19bad
commit 93142a02ee

View File

@ -178,10 +178,8 @@ SparcV9TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out
PM.add(createPreSelectionPass(*this));
PM.add(createLowerSelectPass());
// Run basic LLVM dataflow optimizations, to clean up after pre-selection.
//PM.add(createReassociatePass());
//PM.add(createLICMPass());
//PM.add(createGCSEPass());
// Clean up after pre-selection.
PM.add(createReassociatePass());
// If the user's trying to read the generated code, they'll need to see the
// transformed input.
@ -269,11 +267,8 @@ void SparcV9JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
PM.add(createPreSelectionPass(TM));
PM.add(createLowerSelectPass());
// Run basic LLVM dataflow optimizations, to clean up after pre-selection.
// Clean up after pre-selection.
PM.add(createReassociatePass());
// FIXME: these passes crash the FunctionPassManager when being added...
//PM.add(createLICMPass());
//PM.add(createGCSEPass());
// If the user's trying to read the generated code, they'll need to see the
// transformed input.