]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/alpha/alphaev6/memcpy.S: Mark .prologue.
authorRichard Henderson <rth@redhat.com>
Sun, 26 Sep 2004 17:40:31 +0000 (17:40 +0000)
committerRichard Henderson <rth@redhat.com>
Sun, 26 Sep 2004 17:40:31 +0000 (17:40 +0000)
        * sysdeps/unix/alpha/sysdep.h (LEAF, ENTRY): Align entry points
        to 16 byte boundaries.

sysdeps/alpha/alphaev6/memcpy.S
sysdeps/unix/alpha/sysdep.h

index d16bc03a02642441c7131e4920ceab85b5855c71..7cff521da20c24e68ca5a047d9d7f63c190ba7e0 100644 (file)
@@ -39,6 +39,7 @@
        .set noat
 
 ENTRY(memcpy)
+       .prologue 0
 
        mov     $16, $0                 # E : copy dest to return
        ble     $18, $nomoredata        # U : done with the copy?
index 5378f8160274a4e8e381c104358031ec1f2e3eba..5259c09a911caef2a6d14f0ccecf8f5ff611fc28 100644 (file)
 
 #define LEAF(name, framesize)                  \
   .globl name;                                 \
-  .align 3;                                    \
+  .align 4;                                    \
   .ent name, 0;                                        \
   __LABEL(name)                                        \
   .frame sp, framesize, ra
 
 #define ENTRY(name)                            \
   .globl name;                                 \
-  .align 3;                                    \
+  .align 4;                                    \
   .ent name, 0;                                        \
   __LABEL(name)                                        \
   .frame sp, 0, ra
This page took 0.045915 seconds and 5 git commands to generate.