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

Brian Gaeke gaeke at cs.uiuc.edu
Mon Oct 4 14:18:35 PDT 2004



Changes in directory reopt/lib/LightWtProfiling:

RuntimeOptimizations.cpp updated: 1.51 -> 1.52
---
Log message:

Fix doxygen comment for isFirstTriggerCall().
Remove -allow-calls option -- currently, turning it on would be completely broken.


---
Diffs of the changes:  (+1 -3)

Index: reopt/lib/LightWtProfiling/RuntimeOptimizations.cpp
diff -u reopt/lib/LightWtProfiling/RuntimeOptimizations.cpp:1.51 reopt/lib/LightWtProfiling/RuntimeOptimizations.cpp:1.52
--- reopt/lib/LightWtProfiling/RuntimeOptimizations.cpp:1.51	Thu Sep 23 14:48:33 2004
+++ reopt/lib/LightWtProfiling/RuntimeOptimizations.cpp	Mon Oct  4 16:18:25 2004
@@ -42,10 +42,8 @@
     << std::dec);
 }
 
-cl::opt<bool> AllowCalls("allow-calls", cl::init(false));
 /// isFirstTriggerCall - Returns true iff I is a call instruction which
-//appears
-/// to call into the first-level trigger function.
+/// appears to call into the first-level trigger function.
 ///
 static bool isFirstTriggerCall (const Instruction &I) {
   if (const CallInst *CI = dyn_cast<CallInst> (&I)) {






More information about the llvm-commits mailing list