From 6323fb3d7f9aa7a79cc9f3a4f57fc6622da8f457 Mon Sep 17 00:00:00 2001 From: Wei Mi Date: Thu, 11 Oct 2018 22:14:27 +0000 Subject: [PATCH] [SampleFDO][NFC] Remove debugging log left over in the code. llvm-svn: 344304 --- llvm/include/llvm/ProfileData/SampleProf.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/llvm/include/llvm/ProfileData/SampleProf.h b/llvm/include/llvm/ProfileData/SampleProf.h index e632a1c955bb..927dfd246878 100644 --- a/llvm/include/llvm/ProfileData/SampleProf.h +++ b/llvm/include/llvm/ProfileData/SampleProf.h @@ -488,8 +488,6 @@ public: // If the format is SPF_Compact_Binary, the name is already a GUID and we // don't want to return the GUID of GUID. static uint64_t getGUID(StringRef Name) { - if (Format == SPF_Compact_Binary) - errs() << Name << '\n'; return (Format == SPF_Compact_Binary) ? std::stoull(Name.data()) : Function::getGUID(Name); }