Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Oct 2010 05:22:07 +0000 (UTC)
From:      "Jayachandran C." <jchandra@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r214260 - head/lib/libc/mips
Message-ID:  <201010240522.o9O5M780018468@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



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