* sysdeps/ia64/bzero.S: Define __bzero as well.
This commit is contained in:
Ulrich Drepper 2002-08-25 05:27:13 +00:00
parent 6dd67bd565
commit e2084ba071
2 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,7 @@
2002-08-24 Ulrich Drepper <drepper@redhat.com> 2002-08-24 Ulrich Drepper <drepper@redhat.com>
* sysdeps/ia64/bzero.S: Define __bzero as well.
* locale/programs/charmap.c (charmap_new_char): Don't use * locale/programs/charmap.c (charmap_new_char): Don't use
ULONG_MAX as maximum UCS4 value. ULONG_MAX as maximum UCS4 value.

View File

@ -1,6 +1,6 @@
/* Optimized version of the standard bzero() function. /* Optimized version of the standard bzero() function.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Copyright (C) 2000, 2001 Free Software Foundation, Inc. Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
Contributed by Dan Pop <Dan.Pop@cern.ch>. Contributed by Dan Pop <Dan.Pop@cern.ch>.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -41,7 +41,7 @@
#define loopcnt loc4 #define loopcnt loc4
#define save_lc loc5 #define save_lc loc5
ENTRY(bzero) ENTRY(__bzero)
.prologue .prologue
alloc save_pfs = ar.pfs, 2, 6, 0, 0 alloc save_pfs = ar.pfs, 2, 6, 0, 0
.save ar.lc, save_lc .save ar.lc, save_lc
@ -91,4 +91,5 @@ ENTRY(bzero)
mov ar.lc = save_lc mov ar.lc = save_lc
mov ar.pfs = save_pfs mov ar.pfs = save_pfs
br.ret.sptk.many b0 br.ret.sptk.many b0
END(bzero) END(__bzero)
weak_alias (__bzero, bzero)