Skip to content

Commit 3a8a926

Browse files
[Instrumentation] Remove redundant LLVM_DEBUG (NFC)
1 parent baa8c2a commit 3a8a926

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -658,10 +658,10 @@ void FuncPGOInstrumentation<Edge, BBInfo>::computeCFGHash() {
658658
<< " CRC = " << JC.getCRC()
659659
<< ", Selects = " << SIVisitor.getNumOfSelectInsts()
660660
<< ", Edges = " << MST.numEdges() << ", ICSites = "
661-
<< ValueSites[IPVK_IndirectCallTarget].size());
662-
LLVM_DEBUG(dbgs() << ", Memops = " << ValueSites[IPVK_MemOPSize].size()
663-
<< ", High32 CRC = " << JCH.getCRC());
664-
LLVM_DEBUG(dbgs() << ", Hash = " << FunctionHash << "\n";);
661+
<< ValueSites[IPVK_IndirectCallTarget].size()
662+
<< ", Memops = " << ValueSites[IPVK_MemOPSize].size()
663+
<< ", High32 CRC = " << JCH.getCRC()
664+
<< ", Hash = " << FunctionHash << "\n";);
665665

666666
if (PGOTraceFuncHash != "-" && F.getName().contains(PGOTraceFuncHash))
667667
dbgs() << "Funcname=" << F.getName() << ", Hash=" << FunctionHash

0 commit comments

Comments
 (0)