[llvm-commits] CVS: llvm/lib/CodeGen/PrologEpilogInserter.cpp

Evan Cheng evan.cheng at apple.com
Thu Mar 1 02:23:50 PST 2007



Changes in directory llvm/lib/CodeGen:

PrologEpilogInserter.cpp updated: 1.75 -> 1.76
---
Log message:

Delete register scavenger when done with it.

---
Diffs of the changes:  (+2 -0)

 PrologEpilogInserter.cpp |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/lib/CodeGen/PrologEpilogInserter.cpp
diff -u llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.75 llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.76
--- llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.75	Wed Feb 28 20:25:51 2007
+++ llvm/lib/CodeGen/PrologEpilogInserter.cpp	Thu Mar  1 04:23:33 2007
@@ -458,5 +458,7 @@
       if (RS) RS->forward(I);
     }
   }
+
+  delete RS;
 }
 






More information about the llvm-commits mailing list