svn commit: r338863 - head/sys/amd64/amd64
Mark Johnston
markj at FreeBSD.org
Fri Sep 21 20:20:04 UTC 2018
Author: markj
Date: Fri Sep 21 20:20:03 2018
New Revision: 338863
URL: https://svnweb.freebsd.org/changeset/base/338863
Log:
Use the GNU as-compatible .endm instead of .endmacro.
Approved by: re (gjb)
Modified:
head/sys/amd64/amd64/support.S
Modified: head/sys/amd64/amd64/support.S
==============================================================================
--- head/sys/amd64/amd64/support.S Fri Sep 21 17:53:06 2018 (r338862)
+++ head/sys/amd64/amd64/support.S Fri Sep 21 20:20:03 2018 (r338863)
@@ -294,14 +294,14 @@ END(fillw)
.if \smap
stac
.endif
-.endmacro
+.endm
.macro SMAP_ENABLE smap
.if \smap
clac
.endif
-.endmacro
+.endm
/*
* copyout(from_kernel, to_user, len)
@@ -367,7 +367,7 @@ END(fillw)
movq %rax,PCB_ONFAULT(%r9)
POP_FRAME_POINTER
ret
-.endmacro
+.endm
ENTRY(copyout_nosmap_std)
COPYOUT smap=0 erms=0
@@ -436,7 +436,7 @@ END(copyout_smap_erms)
movq %rax,PCB_ONFAULT(%r9)
POP_FRAME_POINTER
ret
-.endmacro
+.endm
ENTRY(copyin_nosmap_std)
COPYIN smap=0 erms=0
More information about the svn-src-all
mailing list