svn commit: r295700 - head/sys/riscv/include

Ruslan Bukin br at FreeBSD.org
Wed Feb 17 14:24:27 UTC 2016


Author: br
Date: Wed Feb 17 14:24:25 2016
New Revision: 295700
URL: https://svnweb.freebsd.org/changeset/base/295700

Log:
  Use better form representing 32 x 128-bit floating-point registers.
  
  Suggested by:	kib

Modified:
  head/sys/riscv/include/ucontext.h

Modified: head/sys/riscv/include/ucontext.h
==============================================================================
--- head/sys/riscv/include/ucontext.h	Wed Feb 17 14:13:25 2016	(r295699)
+++ head/sys/riscv/include/ucontext.h	Wed Feb 17 14:24:25 2016	(r295700)
@@ -50,7 +50,7 @@ struct gpregs {
 };
 
 struct fpregs {
-	__uint64_t	fp_x[64] __aligned(16);
+	__uint64_t	fp_x[32][2];
 	__uint64_t	fp_fcsr;
 	int		fp_flags;
 	int		pad;


More information about the svn-src-all mailing list