about summary refs log tree commit diff
path: root/sysdeps/powerpc/elf/bzero.S
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-25 20:30:43 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-25 20:30:43 +0000
commitaa1f6fa87914c0f065e1315e812f268ab974efa5 (patch)
tree06f3ebfecda63bd4dcf7c70fd8b0439db4281586 /sysdeps/powerpc/elf/bzero.S
parenta53e3292a4e94fb81d4870cd1b029a3cbf580c65 (diff)
downloadglibc-aa1f6fa87914c0f065e1315e812f268ab974efa5.tar.gz
glibc-aa1f6fa87914c0f065e1315e812f268ab974efa5.tar.xz
glibc-aa1f6fa87914c0f065e1315e812f268ab974efa5.zip
Update.
2000-02-25  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/powerpc/bzero.S: Moved to...
	* sysdeps/powerpc/elf/bzero.S: ...here.  New file.
Diffstat (limited to 'sysdeps/powerpc/elf/bzero.S')
-rw-r--r--sysdeps/powerpc/elf/bzero.S27
1 files changed, 27 insertions, 0 deletions
diff --git a/sysdeps/powerpc/elf/bzero.S b/sysdeps/powerpc/elf/bzero.S
new file mode 100644
index 0000000000..f914123563
--- /dev/null
+++ b/sysdeps/powerpc/elf/bzero.S
@@ -0,0 +1,27 @@
+/* Optimized bzero `implementation' for PowerPC.
+   Copyright (C) 1997, 1999 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
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+#include <sysdep.h>
+
+ENTRY(__bzero)
+	mr	r5,r4
+	li	r4,0
+	b	memset@local
+END(__bzero)
+weak_alias (__bzero, bzero)