1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-31 11:32:00 +00:00

Do an additional run of duplicate loads at the end of OptGroup4.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5959 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2013-01-07 20:17:50 +00:00
parent a302df3cc1
commit d6290e0a0f

View File

@ -1264,6 +1264,7 @@ static unsigned RunOptGroup4 (CodeSeg* S)
Changes += RunOptFunc (S, &DOptTransfers2, 1);
Changes += RunOptFunc (S, &DOptLoad2, 1);
Changes += RunOptFunc (S, &DOptLoad3, 1);
Changes += RunOptFunc (S, &DOptDupLoads, 1);
/* Return the number of changes */
return Changes;