From 3be11cb6c565bbffd11471eaf22b728b00fc0c05 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Sat, 14 May 2016 04:41:14 +0000 Subject: [PATCH] Remove unwanted fprintf debug From: Mehdi Amini llvm-svn: 269536 --- include/llvm/LTO/ThinLTOCodeGenerator.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/llvm/LTO/ThinLTOCodeGenerator.h b/include/llvm/LTO/ThinLTOCodeGenerator.h index 4a47c1fbc96..1e73318fa6f 100644 --- a/include/llvm/LTO/ThinLTOCodeGenerator.h +++ b/include/llvm/LTO/ThinLTOCodeGenerator.h @@ -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; }