svn commit: r274555 - head/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Sat Nov 15 21:25:18 UTC 2014


Author: kib
Date: Sat Nov 15 21:25:17 2014
New Revision: 274555
URL: https://svnweb.freebsd.org/changeset/base/274555

Log:
  Fix END()s for fueword and fueword64, match the name in END() with
  entry.
  
  Submitted by:	Jeroen Hofstee <jeroen at myspectrum.nl>
  MFC after:	1 week

Modified:
  head/sys/amd64/amd64/support.S

Modified: head/sys/amd64/amd64/support.S
==============================================================================
--- head/sys/amd64/amd64/support.S	Sat Nov 15 20:02:22 2014	(r274554)
+++ head/sys/amd64/amd64/support.S	Sat Nov 15 21:25:17 2014	(r274555)
@@ -426,8 +426,8 @@ ENTRY(fueword)
 	movq	%r11,(%rsi)
 	POP_FRAME_POINTER
 	ret
-END(fuword64)
-END(fuword)
+END(fueword64)
+END(fueword)
 
 ENTRY(fueword32)
 	PUSH_FRAME_POINTER


More information about the svn-src-head mailing list