~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to sysdeps/x86_64/multiarch/memset-x86-64.S

  • Committer: Steve Langasek
  • Date: 2011-02-18 21:18:44 UTC
  • mfrom: (103.1.7 eglibc)
  • Revision ID: steve.langasek@linaro.org-20110218211844-lodmi8b1qhyq3f3x
Tags: 2.13~pre1-0ubuntu1+multiarch.1
merge from natty

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <sysdep.h>
 
2
 
 
3
#ifndef NOT_IN_libc
 
4
# undef ENTRY_CHK
 
5
# define ENTRY_CHK(name) \
 
6
        .type __memset_chk_x86_64, @function; \
 
7
        .globl __memset_chk_x86_64; \
 
8
        .p2align 4; \
 
9
        __memset_chk_x86_64: cfi_startproc; \
 
10
        CALL_MCOUNT
 
11
# undef END_CHK
 
12
# define END_CHK(name) \
 
13
        cfi_endproc; .size __memset_chk_x86_64, .-__memset_chk_x86_64
 
14
 
 
15
# define libc_hidden_builtin_def(name)
 
16
# define memset __memset_x86_64
 
17
# include "../memset.S"
 
18
#endif