mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-28 12:13:37 +08:00
arm: Remove unnecessary volatile qualifier
There is no reason to treat tlsdesc entries as volatile objects. * sysdeps/arm/dl-machine.h (elf_machine_rel): Remove volatile.
This commit is contained in:
parent
0ca3d1d6d0
commit
28e1ddf340
@ -1,3 +1,7 @@
|
||||
2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||
|
||||
* sysdeps/arm/dl-machine.h (elf_machine_rel): Remove volatile.
|
||||
|
||||
2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||
|
||||
[BZ #18572]
|
||||
|
@ -464,8 +464,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
|
||||
}
|
||||
case R_ARM_TLS_DESC:
|
||||
{
|
||||
struct tlsdesc volatile *td =
|
||||
(struct tlsdesc volatile *)reloc_addr;
|
||||
struct tlsdesc *td = (struct tlsdesc *)reloc_addr;
|
||||
|
||||
# ifndef RTLD_BOOTSTRAP
|
||||
if (! sym)
|
||||
|
Loading…
Reference in New Issue
Block a user