Skip to content

Commit a05baf4

Browse files
[EDDI] Removed cleaning for nondup functions
1 parent b1e9927 commit a05baf4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

passes/EDDI.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,9 +1190,9 @@ PreservedAnalyses EDDI::run(Module &Md, ModuleAnalysisManager &AM) {
11901190
}
11911191
else {
11921192
//auto FnDup = getFunctionDuplicate(&Fn);
1193-
if (/* !Fn.getName().equals("main") && */ !Fn.getName().equals("DataCorruption_Handler") && !Fn.getName().equals("SigMismatch_Handler") && !Fn.isDeclaration() && Fn.getNumUses() == 0) {
1193+
/* if (!Fn.getName().equals("main") && !Fn.getName().equals("DataCorruption_Handler") && !Fn.getName().equals("SigMismatch_Handler") && !Fn.isDeclaration() && Fn.getNumUses() == 0) {
11941194
FnsToRemove.push_back(&Fn);
1195-
}
1195+
} */
11961196
}
11971197
}
11981198

passes/Profiling/ASPISCheckProfiler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ PreservedAnalyses ASPISCheckProfiler::run(Module &Md, ModuleAnalysisManager &AM)
153153
}
154154
}
155155

156-
errs() << "Found " << SyncPts.size() << " Syncronization Points\n";
156+
//errs() << "Found " << SyncPts.size() << " Syncronization Points\n";
157157

158158
std::set<Instruction*> done;
159159
for (auto I : SyncPts) {

0 commit comments

Comments
 (0)