1.0.10.54: Fix build with old gcc

Surround code fragment with braces for variable declarations.
This commit is contained in:
NIIMI Satoshi 2007-10-21 23:25:35 +00:00
parent 9772cd388b
commit b9be3a45c0
2 changed files with 10 additions and 8 deletions

View file

@ -384,15 +384,17 @@ static void freebsd_init()
* x86-assem.S.
*/
#ifdef LISP_FEATURE_X86
{
size_t len;
int instruction_sse;
len = sizeof(instruction_sse);
if (sysctlbyname("hw.instruction_sse", &instruction_sse, &len, NULL, 0) == 0
&& instruction_sse != 0) {
if (sysctlbyname("hw.instruction_sse", &instruction_sse, &len,
NULL, 0) == 0 && instruction_sse != 0) {
/* Use the SSE detector */
fast_bzero_pointer = fast_bzero_detect;
}
}
#endif /* LISP_FEATURE_X86 */
}

View file

@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
"1.0.10.53"
"1.0.10.54"