Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Nov 2014 21:25:18 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r274555 - head/sys/amd64/amd64
Message-ID:  <201411152125.sAFLPIkV040010@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411152125.sAFLPIkV040010>