]> git.sur5r.net Git - cc65/commitdiff
Reorder optimimization steps to get better results.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 28 Aug 2009 21:03:17 +0000 (21:03 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 28 Aug 2009 21:03:17 +0000 (21:03 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4067 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/codeopt.c

index 8ec1e22757ca20b57f358e28f5b92c64ef529c17..8a8c945d00aef85d2a4d6a660121fedc2580c72f 100644 (file)
@@ -1558,12 +1558,12 @@ static unsigned RunOptGroup3 (CodeSeg* S)
                C += RunOptFunc (S, &DOptDeadJumps, 1);
                C += RunOptFunc (S, &DOptRTS, 1);
                C += RunOptFunc (S, &DOptDeadCode, 1);
+               C += RunOptFunc (S, &DOptBoolTrans, 1);
                C += RunOptFunc (S, &DOptJumpTarget1, 1);
                C += RunOptFunc (S, &DOptJumpTarget2, 1);
                C += RunOptFunc (S, &DOptCondBranches1, 1);
                C += RunOptFunc (S, &DOptCondBranches2, 1);
                C += RunOptFunc (S, &DOptRTSJumps1, 1);
-               C += RunOptFunc (S, &DOptBoolTrans, 1);
                C += RunOptFunc (S, &DOptCmp1, 1);
                C += RunOptFunc (S, &DOptCmp2, 1);
                C += RunOptFunc (S, &DOptCmp3, 1);