[llvm-commits] [llvm] r51691 - /llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp
Bill Wendling
isanbard at gmail.com
Thu May 29 12:48:57 PDT 2008
On Thu, May 29, 2008 at 11:15 AM, Owen Anderson <resistor at mac.com> wrote:
> Author: resistor
> Date: Thu May 29 13:15:49 2008
> New Revision: 51691
>
> URL: http://llvm.org/viewvc/llvm-project?rev=51691&view=rev
> Log:
> Renumbering needs to account for instruction slot offsets when performing lookups in the index maps.
>
> Modified:
> llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp
>
> Modified: llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp?rev=51691&r1=51690&r2=51691&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp (original)
> +++ llvm/trunk/lib/CodeGen/LiveIntervalAnalysis.cpp Thu May 29 13:15:49 2008
> @@ -58,8 +58,6 @@
> AU.addRequired<LiveVariables>();
> AU.addPreservedID(MachineLoopInfoID);
> AU.addPreservedID(MachineDominatorsID);
> - AU.addPreservedID(PHIEliminationID);
> - AU.addRequiredID(PHIEliminationID);
> AU.addRequiredID(TwoAddressInstructionPassID);
> MachineFunctionPass::getAnalysisUsage(AU);
> }
> @@ -75,6 +73,8 @@
> delete ClonedMIs[i];
> }
>
> +#include <iostream>
> +
ACK! Please remove this. Thanks!
-bw
More information about the llvm-commits
mailing list