svn commit: r284771 - head/sys/arm/arm

Ian Lepore ian at FreeBSD.org
Wed Jun 24 18:26:05 UTC 2015


Author: ian
Date: Wed Jun 24 18:26:04 2015
New Revision: 284771
URL: https://svnweb.freebsd.org/changeset/base/284771

Log:
  Fix a misplaced #endif (maybe a mismerge?).  Emitting the symbol for CURPMAP
  is not dependent on whether VFP (hardware floating point) is enabled.

Modified:
  head/sys/arm/arm/genassym.c

Modified: head/sys/arm/arm/genassym.c
==============================================================================
--- head/sys/arm/arm/genassym.c	Wed Jun 24 16:19:21 2015	(r284770)
+++ head/sys/arm/arm/genassym.c	Wed Jun 24 18:26:04 2015	(r284771)
@@ -134,9 +134,9 @@ ASSYM(ARM_RAS_END, ARM_RAS_END);
 
 #ifdef VFP
 ASSYM(PCB_VFPSTATE, offsetof(struct pcb, pcb_vfpstate));
+#endif
 
 ASSYM(PC_CURPMAP, offsetof(struct pcpu, pc_curpmap));
-#endif
 
 ASSYM(PAGE_SIZE, PAGE_SIZE);
 ASSYM(PMAP_DOMAIN_KERNEL, PMAP_DOMAIN_KERNEL);


More information about the svn-src-head mailing list