This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/14278] New: Typo in SYSCALL_PIC_SETUP in sysdeps/i386/sysdep.h


http://sourceware.org/bugzilla/show_bug.cgi?id=14278

             Bug #: 14278
           Summary: Typo in SYSCALL_PIC_SETUP in sysdeps/i386/sysdep.h
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: unassigned@sourceware.org
        ReportedBy: hjl.tools@gmail.com
                CC: drepper.fsp@gmail.com
    Classification: Unclassified


sysdeps/i386/sysdep.h has

#ifdef PIC
#define JUMPTARGET(name)        name##@PLT
#define SYSCALL_PIC_SETUP \
    pushl %ebx;                                                               \
    cfi_adjust_cfa_offset (4);                                                \
    call 0f;                                                                  \
0:  popl %ebx;                                                                \
    cfi_adjust_cfa_offset (-4);                                               \
    addl $_GLOBAL_OFFSET_TABLE+[.-0b], %ebx;
          ^^^^^^^^^^^^^^^^^^^^

It should be _GLOBAL_OFFSET_TABLE_.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]