commit | efc612c17b2320d09d26c36780faeb121ac66fe8 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jan 09 12:18:24 2009 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Jan 09 12:18:24 2009 +0100 |
tree | 687c30ae98c377fa934f4354089e8f7af3f9bc11 | |
parent | 68eac13217fa4f4015e30920644670087c0660b9 [diff] |
[CLEANUP] replace a few occurrences of (flags & X) && !(flags & Y) This construct collapses into ((flags & (X|Y)) == X) when X is a single-bit flag. This provides a noticeable code shrink and the output code results in less conditional jumps.