From 6abfde65573d145325a908417d5301d4766c6af8 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 1 Jul 2003 15:00:03 +0000 Subject: nginx-0.0.1-2003-07-01-19:00:03 import --- src/http/ngx_http_cache.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/http') 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; -- cgit