From 16b2c6b42ba70f237a85c8529a49732f6c6b6c3f Mon Sep 17 00:00:00 2001 From: xnpster Date: Sat, 13 Sep 2025 20:48:24 +0300 Subject: [PATCH] REMOVE_DIST_ARRAYS_FROM_IO: remove debug prints --- .../ReplaceArraysInIO/replace_dist_arrays_in_io.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Transformations/ReplaceArraysInIO/replace_dist_arrays_in_io.cpp b/src/Transformations/ReplaceArraysInIO/replace_dist_arrays_in_io.cpp index a6df223..c5f8335 100644 --- a/src/Transformations/ReplaceArraysInIO/replace_dist_arrays_in_io.cpp +++ b/src/Transformations/ReplaceArraysInIO/replace_dist_arrays_in_io.cpp @@ -61,7 +61,6 @@ static SgExpression* findExprWithVariant(SgExpression* exp, int variant) static bool checkAssumedSize(SgStatement *st, const string &arrayName, const string ¤tFile) { - __spf_print(1, "Try array %s\n", arrayName.c_str()); bool found = false; DIST::Array* array_p = getArrayFromDeclarated(st, arrayName); @@ -74,8 +73,6 @@ static bool checkAssumedSize(SgStatement *st, const string &arrayName, const str SgExpression* list = st->expr(0); while (list) { - __spf_print(1, "Try list %s\n", list->lhs()->unparse()); - if (list->lhs() && list->lhs()->symbol()->identifier() == arrayName) { if(findExprWithVariant(list->lhs(), STAR_RANGE)) @@ -724,7 +721,6 @@ void replaceDistributedArraysInIO(vector& regions, { if (next->hasLabel()) { - __spf_print(1, "%s has label\n", next->unparse()); moveLabelBefore(next); find_return_stmt = next->lexPrev(); }