svn commit: r274844 - stable/10/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Sat Nov 22 09:38:19 UTC 2014


Author: kib
Date: Sat Nov 22 09:38:18 2014
New Revision: 274844
URL: https://svnweb.freebsd.org/changeset/base/274844

Log:
  MFC r274555:
  Fix END()s for fueword and fueword64, match the name in END() with
  entry.

Modified:
  stable/10/sys/amd64/amd64/support.S
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/amd64/amd64/support.S
==============================================================================
--- stable/10/sys/amd64/amd64/support.S	Sat Nov 22 09:05:54 2014	(r274843)
+++ stable/10/sys/amd64/amd64/support.S	Sat Nov 22 09:38:18 2014	(r274844)
@@ -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-stable-10 mailing list