[llvm-commits] CVS: reopt/lib/TraceToFunction/TraceToFunction.cpp

Brian Gaeke gaeke at cs.uiuc.edu
Mon May 17 16:39:01 PDT 2004


Changes in directory reopt/lib/TraceToFunction:

TraceToFunction.cpp updated: 1.38 -> 1.39

---
Log message:

Removing FLI calls should no longer be necessary at this later stage.


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

Index: reopt/lib/TraceToFunction/TraceToFunction.cpp
diff -u reopt/lib/TraceToFunction/TraceToFunction.cpp:1.38 reopt/lib/TraceToFunction/TraceToFunction.cpp:1.39
--- reopt/lib/TraceToFunction/TraceToFunction.cpp:1.38	Mon May 17 16:37:13 2004
+++ reopt/lib/TraceToFunction/TraceToFunction.cpp	Mon May 17 16:38:18 2004
@@ -364,12 +364,6 @@
 		  "Sorry, fixupPhisAndCalls mishandled a Phi node"));
   }
 
-  // Remove calls to first-level instrumentation if we find them.
-  for (BasicBlock::iterator BI = dstB->begin (), BE = dstB->end ();
-       BI != BE; ++BI)
-    if (isFirstTriggerCall (*BI))
-      goners.push_back (BI);
-
   while (!goners.empty ()) {
     assert (goners.back ()->use_size () == 0
 	    && "Whoops, I was going to delete something which still has uses");





More information about the llvm-commits mailing list