1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Remove unwanted fprintf debug

From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 269536
This commit is contained in:
Mehdi Amini 2016-05-14 04:41:14 +00:00
parent ff6ef40e7b
commit 3be11cb6c5

View File

@ -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;
}