]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove extra braces from sysdeps/hppa/__longjmp.c.
authorJohn David Anglin <danglin@gcc.gnu.org>
Sun, 16 Jul 2017 15:11:31 +0000 (11:11 -0400)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 16 Jul 2017 15:11:31 +0000 (11:11 -0400)
ChangeLog
sysdeps/hppa/__longjmp.c

index c69c59b932ffc9e5546695cad19de9463316da5a..143807a059793c5e1ce5c21fb3e51957901a684d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 438db01473a34481f181defb0f1cdc69e9cfc4f8..2fedb1d7387411e4bd415208d70262b81c71ed47 100644 (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 (;;);