svn commit: r197665 - projects/ppc64/sys/powerpc/include

Nathan Whitehorn nwhitehorn at FreeBSD.org
Thu Oct 1 13:02:34 UTC 2009


Author: nwhitehorn
Date: Thu Oct  1 13:02:34 2009
New Revision: 197665
URL: http://svn.freebsd.org/changeset/base/197665

Log:
  Chase earlier changes: MI code does not like us to have some registers
  different sizes than others, so make them all a register_t.

Modified:
  projects/ppc64/sys/powerpc/include/reg.h

Modified: projects/ppc64/sys/powerpc/include/reg.h
==============================================================================
--- projects/ppc64/sys/powerpc/include/reg.h	Thu Oct  1 13:01:14 2009	(r197664)
+++ projects/ppc64/sys/powerpc/include/reg.h	Thu Oct  1 13:02:34 2009	(r197665)
@@ -8,8 +8,8 @@
 struct reg {
 	register_t fixreg[32];
 	register_t lr;
-	int cr;
-	int xer;
+	register_t cr;
+	register_t xer;
 	register_t ctr;
 	register_t pc;
 };


More information about the svn-src-projects mailing list