svn commit: r214260 - head/lib/libc/mips

Jayachandran C. jchandra at FreeBSD.org
Sun Oct 24 05:22:08 UTC 2010


Author: jchandra
Date: Sun Oct 24 05:22:07 2010
New Revision: 214260
URL: http://svn.freebsd.org/changeset/base/214260

Log:
  Fix PIC_RETURN when abicalls are not defined.
  
  Submitted by:	Artem Belevich (artemb at gmail dot com)

Modified:
  head/lib/libc/mips/SYS.h

Modified: head/lib/libc/mips/SYS.h
==============================================================================
--- head/lib/libc/mips/SYS.h	Sun Oct 24 04:38:56 2010	(r214259)
+++ head/lib/libc/mips/SYS.h	Sun Oct 24 05:22:07 2010	(r214260)
@@ -91,7 +91,7 @@
 #else
 # define PIC_PROLOGUE(x)
 # define PIC_TAILCALL(l)	j  _C_LABEL(l)
-# define PIC_RETURN()
+# define PIC_RETURN()		j ra
 #endif /* __ABICALLS__ */
 
 # define SYSTRAP(x)	li v0,SYS_ ## x; syscall;


More information about the svn-src-all mailing list