From d11ca169e716e639ace4a293e52f07b8e6a47f93 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 5 Jan 2008 02:33:22 +0000 Subject: don't sink anything with side effects, this makes lots of stuff work, but sinks almost nothing. llvm-svn: 45617 --- llvm/lib/CodeGen/MachineSink.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'llvm/lib/CodeGen/MachineSink.cpp') diff --git a/llvm/lib/CodeGen/MachineSink.cpp b/llvm/lib/CodeGen/MachineSink.cpp index dff60f6d395..31aeea5724a 100644 --- a/llvm/lib/CodeGen/MachineSink.cpp +++ b/llvm/lib/CodeGen/MachineSink.cpp @@ -130,6 +130,10 @@ bool MachineSinking::ProcessBlock(MachineBasicBlock &MBB) { /// SinkInstruction - Determine whether it is safe to sink the specified machine /// instruction out of its current block into a successor. bool MachineSinking::SinkInstruction(MachineInstr *MI) { + // Don't sink things with side-effects we don't understand. + if (TII->hasUnmodelledSideEffects(MI)) + return false; + // Loop over all the operands of the specified instruction. If there is // anything we can't handle, bail out. MachineBasicBlock *ParentBlock = MI->getParent(); -- cgit v1.2.3