Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Jan 2020 20:01:36 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356328 - head/lib/csu/mips
Message-ID:  <202001032001.003K1aKf085711@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Fri Jan  3 20:01:36 2020
New Revision: 356328
URL: https://svnweb.freebsd.org/changeset/base/356328

Log:
  mips !o32: fix csu build
  
  Pointy hat to:	kevans

Modified:
  head/lib/csu/mips/crt.h

Modified: head/lib/csu/mips/crt.h
==============================================================================
--- head/lib/csu/mips/crt.h	Fri Jan  3 19:59:42 2020	(r356327)
+++ head/lib/csu/mips/crt.h	Fri Jan  3 20:01:36 2020	(r356328)
@@ -51,8 +51,8 @@
     ".set reorder		\n"					\
     ".cpsetup $ra, $v0, 1b	\n"					\
     ".local	" __STRING(func) "\n"					\
-    "jal	" __STRING(func)
-    "nop			\n"					\
+    "jal	" __STRING(func) "\n"					\
+    "nop			\n"
 #endif
 
 #endif



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