mirror of
https://github.com/cc65/cc65.git
synced 2025-01-08 04:30:15 +00:00
rearranged order of new optimizations to better handle -Oi flag
This commit is contained in:
parent
5d274e4bc5
commit
dca99d59e5
@ -1249,8 +1249,9 @@ static unsigned RunOptGroup1 (CodeSeg* S)
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad4, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad5, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad6, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad18, 1); /* Before OptPtrLoad7 */
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad19, 1); /* Before OptPtrLoad7 */
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad7, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad18, 1); /* Before OptPtrLoad11 */
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad11, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad12, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad13, 1);
|
||||
@ -1258,7 +1259,6 @@ static unsigned RunOptGroup1 (CodeSeg* S)
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad15, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad16, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad17, 1);
|
||||
Changes += RunOptFunc (S, &DOptPtrLoad19, 1);
|
||||
Changes += RunOptFunc (S, &DOptBNegAX1, 1);
|
||||
Changes += RunOptFunc (S, &DOptBNegAX2, 1);
|
||||
Changes += RunOptFunc (S, &DOptBNegAX3, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user