svn commit: r232452 - head/sys/mips/mips
Juli Mallett
jmallett at FreeBSD.org
Sat Mar 3 10:22:50 UTC 2012
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
More information about the svn-src-head
mailing list