From: Chris Lattner Date: Thu, 31 Oct 2002 17:16:18 +0000 (+0000) Subject: Reassociate pass now works X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=59b2b86f35a4d8cb904257f8955fa7c94092d4e0;p=oota-llvm.git Reassociate pass now works git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4473 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index faed36c32a8..d00fece480b 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -151,7 +151,7 @@ bool UltraSparc::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) if (!DisablePreSelect) { PM.add(createPreSelectionPass(*this)); - /* PM.add(createReassociatePass()); */ + PM.add(createReassociatePass()); PM.add(createLICMPass()); PM.add(createGCSEPass()); }