From f6b97b3813b8124fbd0729ae0cdf3da1f78bd0f1 Mon Sep 17 00:00:00 2001 From: ilgeco Date: Tue, 12 May 2026 10:42:38 +0200 Subject: [PATCH] Fix report memory --- src/PIM/Compiler/PimCodeGen.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/PIM/Compiler/PimCodeGen.cpp b/src/PIM/Compiler/PimCodeGen.cpp index 792ba27..037ade7 100644 --- a/src/PIM/Compiler/PimCodeGen.cpp +++ b/src/PIM/Compiler/PimCodeGen.cpp @@ -215,8 +215,6 @@ void PimMemory::report(llvm::raw_ostream& file) { sizeGlobal += memEntry.size; } } - file << "\n"; - file << "Total Core Memory: " << formatMemory(totalMemory) << "\n"; } file << numAlloca << " " << formatMemory(sizeAlloca) << " " << numGlobal << " " << formatMemory(sizeGlobal) << "\n";