[llvm-commits] [llvm] r106126 - /llvm/trunk/lib/CodeGen/SjLjEHPrepare.cpp
Jim Grosbach
grosbach at apple.com
Wed Jun 16 11:45:08 PDT 2010
Author: grosbach
Date: Wed Jun 16 13:45:08 2010
New Revision: 106126
URL: http://llvm.org/viewvc/llvm-project?rev=106126&view=rev
Log:
add FIXME
Modified:
llvm/trunk/lib/CodeGen/SjLjEHPrepare.cpp
Modified: llvm/trunk/lib/CodeGen/SjLjEHPrepare.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SjLjEHPrepare.cpp?rev=106126&r1=106125&r2=106126&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SjLjEHPrepare.cpp (original)
+++ llvm/trunk/lib/CodeGen/SjLjEHPrepare.cpp Wed Jun 16 13:45:08 2010
@@ -289,6 +289,9 @@
}
// If we decided we need a spill, do it.
+ // FIXME: Spilling this way is overkill, as it forces all uses of
+ // the value to be reloaded from the stack slot, even those that aren't
+ // in the unwind blocks. We should be more selective.
if (NeedsSpill) {
++NumSpilled;
DemoteRegToStack(*Inst, true);
More information about the llvm-commits
mailing list