[llvm] r269536 - Remove unwanted fprintf debug

Mehdi Amini via llvm-commits llvm-commits at lists.llvm.org
Fri May 13 21:41:14 PDT 2016


Author: mehdi_amini
Date: Fri May 13 23:41:14 2016
New Revision: 269536

URL: http://llvm.org/viewvc/llvm-project?rev=269536&view=rev
Log:
Remove unwanted fprintf debug

From: Mehdi Amini <mehdi.amini at apple.com>

Modified:
    llvm/trunk/include/llvm/LTO/ThinLTOCodeGenerator.h

Modified: llvm/trunk/include/llvm/LTO/ThinLTOCodeGenerator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/LTO/ThinLTOCodeGenerator.h?rev=269536&r1=269535&r2=269536&view=diff
==============================================================================
--- llvm/trunk/include/llvm/LTO/ThinLTOCodeGenerator.h (original)
+++ llvm/trunk/include/llvm/LTO/ThinLTOCodeGenerator.h Fri May 13 23:41:14 2016
@@ -121,7 +121,6 @@ public:
   /// Cache policy: interval (seconds) between two prune of the cache. Set to a
   /// negative value (default) to disable pruning. A value of 0 will be ignored.
   void setCachePruningInterval(int Interval) {
-    fprintf(stderr, "setCachePruningInterval %d\n", Interval);
     if (Interval)
       CacheOptions.PruningInterval = Interval;
   }




More information about the llvm-commits mailing list