Skip to content

Commit

Permalink
otawa: add new line to output
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Brandner committed Oct 5, 2016
1 parent 5fe784c commit ebc4eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion otawa/src/prog/BBRatioDisplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void BBRatioDisplayer::processCFG(WorkSpace *fw, CFG *cfg) {
<< (float)SUM(cfg) * 100 / wcet << "%\t\t"
<< cfg->label() << io::endl;
out << "\n-----------\n";
out << "ADDRESS\tCACHE\tDCACHE\tTIME\tRATIO\tFUNCTION";
out << "ADDRESS\tCACHE\tDCACHE\tTIME\tRATIO\tFUNCTION\n";
unsigned int accu_cache = 0, accu_dcache = 0;
for(std::map<address_t, unsigned int>::const_iterator i(addrTimes.begin()), ie(addrTimes.end()); i != ie; i++)
{
Expand Down

0 comments on commit ebc4eed

Please sign in to comment.