aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_cache.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-07-01 15:00:03 +0000
committerIgor Sysoev <igor@sysoev.ru>2003-07-01 15:00:03 +0000
commit6abfde65573d145325a908417d5301d4766c6af8 (patch)
treea1ac279536b8830a41dcbde437af0ac054f3050b /src/http/ngx_http_cache.c
parentf5e97c5cbe063246087f11f36fa04c48e8dba10a (diff)
downloadnginx-6abfde65573d145325a908417d5301d4766c6af8.tar.gz
nginx-6abfde65573d145325a908417d5301d4766c6af8.zip
nginx-0.0.1-2003-07-01-19:00:03 import
Diffstat (limited to 'src/http/ngx_http_cache.c')
-rw-r--r--src/http/ngx_http_cache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_cache.c b/src/http/ngx_http_cache.c
index b156966dc..e29241b57 100644
--- a/src/http/ngx_http_cache.c
+++ b/src/http/ngx_http_cache.c
@@ -83,7 +83,8 @@ int ngx_crc(char *data, size_t len)
for (sum = 0; len; len--) {
/*
- * gcc 2.95.2 x86 compiles that operator into the single rol opcode.
+ * gcc 2.95.2 x86 and icc 7.1.006 compile that operator
+ * into the single rol opcode.
* msvc 6.0sp2 compiles it into four opcodes.
*/
sum = sum >> 1 | sum << 31;