mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Output the optimization steps that had changes when debugging is enabled.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5687 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
e92356cb36
commit
279dc29b45
@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2001-2010, Ullrich von Bassewitz */
|
||||
/* (C) 2001-2012, Ullrich von Bassewitz */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
@ -40,6 +40,7 @@
|
||||
#include "abend.h"
|
||||
#include "chartype.h"
|
||||
#include "cpu.h"
|
||||
#include "debugflag.h"
|
||||
#include "print.h"
|
||||
#include "xmalloc.h"
|
||||
#include "xsprintf.h"
|
||||
@ -1809,6 +1810,9 @@ static unsigned RunOptFunc (CodeSeg* S, OptFunc* F, unsigned Max)
|
||||
|
||||
/* Run the function */
|
||||
C = F->Func (S);
|
||||
if (Debug && C > 0) {
|
||||
printf ("Applied %s: %u changes\n", F->Name, C);
|
||||
}
|
||||
Changes += C;
|
||||
|
||||
/* Do statistics */
|
||||
|
Loading…
x
Reference in New Issue
Block a user