commit | 30e7101137f17e95a650ed44a577b2c157185641 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Nov 26 20:15:35 2007 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Nov 26 20:22:47 2007 +0100 |
tree | fa9d6548db27baabb96a730c4bbefdda19b7ce33 | |
parent | 583bc966064e248771e75c253dddec7351afd8a2 [diff] |
[OPTIM] small optimization on session_process_counters() It was possible to slightly reduce the size and the number of operations in session_process_counters(). Two 64 bit comparisons were removed, reducing the code by 98 bytes on x86 due to the lack of registers. The net observed performance gain is almost 2%, which cannot be attributed to those optimizations, but more likely to induced changes in code alignment in other functions.