diff options
author | dim <dim@FreeBSD.org> | 2012-08-29 18:22:52 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-08-29 18:22:52 +0000 |
commit | 1d346c645e9050e54033b7058760203f8fbd2833 (patch) | |
tree | 365fe75dab8dcd2c8e78d3c8deb7307639252242 /sys/i386/bios | |
parent | 5e2ff0d24ffdb3748f96775413282c0514875ec6 (diff) | |
download | FreeBSD-src-1d346c645e9050e54033b7058760203f8fbd2833.zip FreeBSD-src-1d346c645e9050e54033b7058760203f8fbd2833.tar.gz |
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.
MFC after: 1 week
Diffstat (limited to 'sys/i386/bios')
-rw-r--r-- | sys/i386/bios/smapi_bios.S | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/i386/bios/smapi_bios.S b/sys/i386/bios/smapi_bios.S index db4b238..74ba05a 100644 --- a/sys/i386/bios/smapi_bios.S +++ b/sys/i386/bios/smapi_bios.S @@ -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 */ |