diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-04-21 21:29:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-04-21 21:29:01 +0000 |
commit | fe681416b10ee144dc0cf7857403de619bb77033 (patch) | |
tree | 3fdd3e8ee10ed6d95764639b276df9abec032107 /sysdeps/ia64/strcat.S | |
parent | f22c9168d7467818d651e80667ea995fc1bbcb5e (diff) | |
download | glibc-fe681416b10ee144dc0cf7857403de619bb77033.tar.gz glibc-fe681416b10ee144dc0cf7857403de619bb77033.tar.xz glibc-fe681416b10ee144dc0cf7857403de619bb77033.zip |
Use HIDDEN_JUMPTARGET for strlen and strcpy calls.
Diffstat (limited to 'sysdeps/ia64/strcat.S')
-rw-r--r-- | sysdeps/ia64/strcat.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/ia64/strcat.S b/sysdeps/ia64/strcat.S index dd2c6b8a40..8b4999e534 100644 --- a/sysdeps/ia64/strcat.S +++ b/sysdeps/ia64/strcat.S @@ -1,6 +1,6 @@ -/* IA-64 assembly version of the standard strcat() function. +/* IA-64 assembly version of the standard strcat() function. This file is part of the GNU C Library. - Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2003, 2004 Free Software Foundation, Inc. Contributed by Dan Pop <Dan.Pop@cern.ch>. The GNU C Library is free software; you can redistribute it and/or @@ -49,11 +49,11 @@ ENTRY(strcat) .body mov out0 = dest mov tmp = gp ;; - br.call.sptk.many b0 = strlen# ;; // rc = strlen(dest); + br.call.sptk.many b0 = HIDDEN_JUMPTARGET(strlen)# ;; // rc = strlen(dest); mov gp = tmp add out0 = dest, rc mov out1 = src - br.call.sptk.many b0 = strcpy# ;; // strcpy(dest + strlen(dest), src) + br.call.sptk.many b0 = HIDDEN_JUMPTARGET(strcpy)# ;; // strcpy(dest + strlen(dest), src) mov gp = tmp mov rc = dest mov b0 = save_b0 |