diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-11 22:46:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-11 22:46:53 +0000 |
commit | f05bf186c119ff068fd4e7ca85756b9439fc7778 (patch) | |
tree | 01a8c8564456483299a0af10be81991c4d6dd675 /sysdeps/unix/sysv/linux/powerpc/powerpc32 | |
parent | 7fbf17e45756f31b6cb53fcae6174e41a2e67661 (diff) | |
download | glibc-f05bf186c119ff068fd4e7ca85756b9439fc7778.tar glibc-f05bf186c119ff068fd4e7ca85756b9439fc7778.tar.gz glibc-f05bf186c119ff068fd4e7ca85756b9439fc7778.tar.bz2 glibc-f05bf186c119ff068fd4e7ca85756b9439fc7778.zip |
Update.
2003-07-11 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (__socket): Add
cfi directives.
* sysdeps/unix/sysv/linux/s390/s390-32/socket.S (__socket): Likewise.
* sysdeps/unix/sysv/linux/s390/s390-64/socket.S (__socket): Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/powerpc32')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S index d406f08fdb..c52ad9babf 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1999, 2003 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 @@ -47,7 +47,9 @@ .text ENTRY(__socket) + cfi_startproc stwu r1,-48(r1) + cfi_adjust_cfa_offset(48) #if NARGS >= 1 stw r3,stackblock(r1) #endif @@ -91,6 +93,7 @@ ENTRY(__socket) .Lsocket_cancel: mflr r9 stw r9,52(r1) + cfi_offset (lr, 4) CENABLE stw r3,16(r1) li r3,P(SOCKOP_,socket) @@ -109,6 +112,7 @@ ENTRY(__socket) addi r1,r1,48 PSEUDO_RET #endif + cfi_endproc PSEUDO_END (__socket) |