Date: Sat, 3 Mar 2012 10:22:49 +0000 (UTC) From: Juli Mallett <jmallett@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r232452 - head/sys/mips/mips Message-ID: <201203031022.q23AMnlK075182@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jmallett Date: Sat Mar 3 10:22:49 2012 New Revision: 232452 URL: http://svn.freebsd.org/changeset/base/232452 Log: Unbreak n64 build without COMPAT_FREEBSD32 by fixing mismatched preprocessor conditionals. Modified: head/sys/mips/mips/trap.c Modified: head/sys/mips/mips/trap.c ============================================================================== --- head/sys/mips/mips/trap.c Sat Mar 3 10:11:18 2012 (r232451) +++ head/sys/mips/mips/trap.c Sat Mar 3 10:22:49 2012 (r232452) @@ -351,7 +351,7 @@ cpu_fetch_syscall_args(struct thread *td sa->args[6] = locr0->t6; sa->args[7] = locr0->t7; nsaved += 4; -#if defined (__mips_n32) || defined(__mips_n64) +#ifdef COMPAT_FREEBSD32 } #endif #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201203031022.q23AMnlK075182>