Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Sep 2012 17:51:12 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r240206 - stable/9/sys/i386/bios
Message-ID:  <201209071751.q87HpCb8039000@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Fri Sep  7 17:51:12 2012
New Revision: 240206
URL: http://svn.freebsd.org/changeset/base/240206

Log:
  MFC r239869:
  
  Remove the argument-less .align directive in sys/i386/bios/smapi_bios.S.
  Specifying no argument is undocumented in the gas manual, and clang's
  integrated assembler refuses to parse it.  Also, removing it causes no
  change at all in the resulting object file.

Modified:
  stable/9/sys/i386/bios/smapi_bios.S
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/i386/bios/smapi_bios.S
==============================================================================
--- stable/9/sys/i386/bios/smapi_bios.S	Fri Sep  7 16:59:30 2012	(r240205)
+++ stable/9/sys/i386/bios/smapi_bios.S	Fri Sep  7 17:51:12 2012	(r240206)
@@ -6,7 +6,6 @@ __FBSDID("$FreeBSD$");
  * Thomas Hood.
  */
 
-	.align
 smapi32_entry:					/* far pointer to SMAPI entry */
 	.globl	smapi32_offset
 smapi32_offset:		.long	0x00000000	/* set by caller */



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