Skip to content

Commit

Permalink
Cleaned a message
Browse files Browse the repository at this point in the history
  • Loading branch information
fabrizioferrandi committed Feb 23, 2023
1 parent 68755ce commit ead4bb7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/HLS/function_allocation/fun_dominator_allocation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,10 @@ DesignFlowStep_Status fun_dominator_allocation::Exec()
INDENT_OUT_MEX(OUTPUT_LEVEL_MINIMUM, output_level,
"---Warning: " + fname + " is empty or the compiler killed all the statements");
}
INDENT_OUT_MEX(OUTPUT_LEVEL_MINIMUM, output_level, "---" + fname);
if(BH->has_implementation())
{
INDENT_OUT_MEX(OUTPUT_LEVEL_MINIMUM, output_level, "---" + fname);
}
if(!function_behavior->is_simple_pipeline())
{
HLSMgr->global_resource_constraints[std::make_pair(fname, WORK_LIBRARY)] = 1;
Expand Down

0 comments on commit ead4bb7

Please sign in to comment.