Skip to content

Commit

Permalink
removed unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
9Tempest committed Dec 7, 2023
1 parent d76ec12 commit 69dab91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions gematria/datasets/bhive_importer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -618,12 +618,12 @@ void BHiveImporter::addInterferenceGraph(
func_live_infos.physical_register_live_range_func.end())
continue;
// pretty print live range of subRegs
LOG("Live range of subReg: " << subReg);
for (auto& range :
func_live_infos.physical_register_live_range_func[subReg]
.rangeList) {
LOG(" " << range.first << ", " << range.second);
}
// LOG("Live range of subReg: " << subReg);
// for (auto& range :
// func_live_infos.physical_register_live_range_func[subReg]
// .rangeList) {
// LOG(" " << range.first << ", " << range.second);
// }
if (checkRegIntersectionsWithBBRange(
func_live_infos.virtual_register_live_range_func[name],
func_live_infos.physical_register_live_range_func[subReg],
Expand Down
1 change: 0 additions & 1 deletion gematria/llvm/canonicalizer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include <sstream>

#define DEBUG

#ifdef DEBUG
#define LOG(X) \
Expand Down

0 comments on commit 69dab91

Please sign in to comment.