diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-03 14:39:24 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-03 14:39:24 -0600 |
commit | 342af96cd123860b3fbe0fe9b0669627cefca1cc (patch) | |
tree | b691d3fb21d1c9907076176db6d40137d22d5b1a /src/transformations/loop.cc | |
parent | d2176835fc6e497a6c3e19b4630745c3911bde2c (diff) | |
download | chill-342af96cd123860b3fbe0fe9b0669627cefca1cc.tar.gz chill-342af96cd123860b3fbe0fe9b0669627cefca1cc.tar.bz2 chill-342af96cd123860b3fbe0fe9b0669627cefca1cc.zip |
doc
Diffstat (limited to 'src/transformations/loop.cc')
-rw-r--r-- | src/transformations/loop.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/transformations/loop.cc b/src/transformations/loop.cc index d34f415..3e040fd 100644 --- a/src/transformations/loop.cc +++ b/src/transformations/loop.cc @@ -1002,8 +1002,7 @@ Loop::Loop(const IR_Control *control) { } // printing out stuff for debugging - - if (DEP_DEBUG) { + CHILL_DEBUG_BEGIN std::cout << "STATEMENTS THAT CAN BE REDUCED: \n"; for (int i = 0; i < canReduce.size(); i++) { std::cout << "------- " << canReduce[i] << " ------- " @@ -1020,7 +1019,7 @@ Loop::Loop(const IR_Control *control) { else std::cout << "Unknown reduction type\n"; } - } + CHILL_DEBUG_END // cleanup the IR tree fprintf(stderr, "init dumb transformation relations\n"); |