From: Roland McGrath Date: Fri, 3 Feb 1995 23:24:38 +0000 (+0000) Subject: Use `li' insn instead of `move'. X-Git-Tag: glibc-2.16-ports-before-merge~3962 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff775c1262ac0f4c3c75694c67efea90a31c1af7;p=thirdparty%2Fglibc.git Use `li' insn instead of `move'. --- diff --git a/sysdeps/mips/bsd-_setjmp.S b/sysdeps/mips/bsd-_setjmp.S index b0f2e8d0641..6e6844cc522 100644 --- a/sysdeps/mips/bsd-_setjmp.S +++ b/sysdeps/mips/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. MIPS version. -Copyright (C) 1994 Free Software Foundation, Inc. +Copyright (C) 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -25,4 +25,4 @@ Cambridge, MA 02139, USA. */ ENTRY (setjmp) j C_SYMBOL_NAME (__sigsetjmp) - move a1, zero /* Pass a second argument of zero. */ + li a1, zero /* Pass a second argument of zero. */ diff --git a/sysdeps/mips/bsd-setjmp.S b/sysdeps/mips/bsd-setjmp.S index 103edd3a7c3..5cd090a31ce 100644 --- a/sysdeps/mips/bsd-setjmp.S +++ b/sysdeps/mips/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. MIPS version. -Copyright (C) 1994 Free Software Foundation, Inc. +Copyright (C) 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -25,4 +25,4 @@ Cambridge, MA 02139, USA. */ ENTRY (setjmp) j C_SYMBOL_NAME (__sigsetjmp) - move a1, 1 /* Pass a second argument of one. */ + li a1, 1 /* Pass a second argument of one. */