svn commit: r356328 - head/lib/csu/mips

Kyle Evans kevans at FreeBSD.org
Fri Jan 3 20:01:37 UTC 2020


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


More information about the svn-src-all mailing list