Remove extra braces from sysdeps/hppa/__longjmp.c.

This commit is contained in:
John David Anglin 2017-07-16 11:11:31 -04:00
parent df3d455b23
commit 4d42d18029
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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 (;;);