mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-23 13:09:58 +08:00
Remove extra braces from sysdeps/hppa/__longjmp.c.
This commit is contained in:
parent
df3d455b23
commit
4d42d18029
@ -1,5 +1,7 @@
|
||||
2017-07-16 John David Anglin <danglin@gcc.gnu.org>
|
||||
|
||||
* sysdeps/hppa/__longjmp.c (__longjmp): Remove extra braces.
|
||||
|
||||
[BZ 20098]
|
||||
* sysdeps/hppa/dl-fptr.c (_dl_read_access_allowed): New.
|
||||
(_dl_lookup_address): Return address if it is not consistent with
|
||||
|
@ -28,7 +28,6 @@ __longjmp (__jmp_buf env, int val)
|
||||
CHECK_SP (env[0].__jmp_buf.__sp);
|
||||
#endif
|
||||
|
||||
{
|
||||
/* We must use one of the non-callee saves registers
|
||||
for env. */
|
||||
register unsigned long r26 asm ("r26") = (unsigned long)&env[0];
|
||||
@ -80,7 +79,6 @@ __longjmp (__jmp_buf env, int val)
|
||||
: /* No outputs. */
|
||||
: "r" (r25), "r" (r26)
|
||||
: /* No point in clobbers. */ );
|
||||
}
|
||||
|
||||
/* Avoid `volatile function does return' warnings. */
|
||||
for (;;);
|
||||
|
Loading…
Reference in New Issue
Block a user