Restore "Move metadata linking after lazy global materialization/linking."
[oota-llvm.git] / lib / Fuzzer / FuzzerUtil.cpp
index 7a04898cf3637ce86d14e3e179aecc6bb2e2806b..8d3480cf48074a7755d287e7713008672f40f39e 100644 (file)
@@ -52,7 +52,6 @@ static void AlarmHandler(int, siginfo_t *, void *) {
 
 void SetTimer(int Seconds) {
   struct itimerval T {{Seconds, 0}, {Seconds, 0}};
-  Printf("SetTimer %d\n", Seconds);
   int Res = setitimer(ITIMER_REAL, &T, nullptr);
   assert(Res == 0);
   struct sigaction sigact;