svn commit: r328119 - head/sys/amd64/include

Konstantin Belousov kib at FreeBSD.org
Thu Jan 18 11:19:59 UTC 2018


Author: kib
Date: Thu Jan 18 11:19:58 2018
New Revision: 328119
URL: https://svnweb.freebsd.org/changeset/base/328119

Log:
  Fix compilation with gas.
  
  Submitted by:	bde
  MFC after:	13 days

Modified:
  head/sys/amd64/include/asmacros.h

Modified: head/sys/amd64/include/asmacros.h
==============================================================================
--- head/sys/amd64/include/asmacros.h	Thu Jan 18 11:07:40 2018	(r328118)
+++ head/sys/amd64/include/asmacros.h	Thu Jan 18 11:19:58 2018	(r328119)
@@ -191,7 +191,7 @@
 	movq	%rax,%cr3
 	movq	PCPU(RSP0),%rax
 	subq	$PTI_SIZE,%rax
-	MOVE_STACKS	(PTI_SIZE / 8) - 1 + \has_err
+	MOVE_STACKS	((PTI_SIZE / 8) - 1 + \has_err)
 	movq	%rax,%rsp
 	popq	%rdx
 	popq	%rax


More information about the svn-src-all mailing list