Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Nov 2014 09:38:19 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r274844 - stable/10/sys/amd64/amd64
Message-ID:  <201411220938.sAM9cJ5L055595@svn.freebsd.org>

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



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