mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
* sysdeps/arm/sysdep.h (CALL_MCOUNT): Add trailing semicolon.
This commit is contained in:
parent
b50946de73
commit
88b3f3ede2
@ -1,3 +1,7 @@
|
|||||||
|
2003-03-21 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/arm/sysdep.h (CALL_MCOUNT): Add trailing semicolon.
|
||||||
|
|
||||||
2003-03-21 Alexandre Oliva <aoliva@redhat.com>
|
2003-03-21 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* sysdeps/mips/mips64/memcpy.S, sysdeps/mips/mips64/memset.S: New.
|
* sysdeps/mips/mips64/memcpy.S, sysdeps/mips/mips64/memset.S: New.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2003-03-21 Daniel Jacobowitz <drow@mvista.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
|
||||||
|
(SINGLE_THREAD_P_PIC): Use "reg" instead of "lr".
|
||||||
|
|
||||||
2003-03-21 Jakub Jelinek <jakub@redhat.com>
|
2003-03-21 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* sysdeps/i386/tls.h [__ASSUME_SET_THREAD_AREA_SYSCALL]
|
* sysdeps/i386/tls.h [__ASSUME_SET_THREAD_AREA_SYSCALL]
|
||||||
|
@ -110,7 +110,7 @@ extern int __local_multiple_threads attribute_hidden;
|
|||||||
ldr reg, 2b; \
|
ldr reg, 2b; \
|
||||||
3: \
|
3: \
|
||||||
add ip, pc, ip; \
|
add ip, pc, ip; \
|
||||||
ldr ip, [ip, lr]; \
|
ldr ip, [ip, reg]; \
|
||||||
teq ip, #0;
|
teq ip, #0;
|
||||||
# define SINGLE_THREAD_P_INT \
|
# define SINGLE_THREAD_P_INT \
|
||||||
str lr, [sp, $-4]!; \
|
str lr, [sp, $-4]!; \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Assembler macros for ARM.
|
/* Assembler macros for ARM.
|
||||||
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
|
Copyright (C) 1997, 1998, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -76,7 +76,7 @@
|
|||||||
#define CALL_MCOUNT \
|
#define CALL_MCOUNT \
|
||||||
str lr,[sp, #-4]! ; \
|
str lr,[sp, #-4]! ; \
|
||||||
bl PLTJMP(mcount) ; \
|
bl PLTJMP(mcount) ; \
|
||||||
ldr lr, [sp], #4
|
ldr lr, [sp], #4 ;
|
||||||
#else
|
#else
|
||||||
#define CALL_MCOUNT /* Do nothing. */
|
#define CALL_MCOUNT /* Do nothing. */
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user