diff options
author | Joseph Myers <joseph@codesourcery.com> | 2019-02-28 15:02:09 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2019-02-28 15:02:09 +0000 |
commit | 462e83a4a0757184eeac821ff3fc0a739235bd47 (patch) | |
tree | 1a3626462ba6264b35707c66501e53851d403a22 /sysdeps/powerpc/powerpc64 | |
parent | cc3e573ce3a542ea6d3711311e41f66261747a0e (diff) | |
download | glibc-462e83a4a0757184eeac821ff3fc0a739235bd47.tar.gz glibc-462e83a4a0757184eeac821ff3fc0a739235bd47.tar.xz glibc-462e83a4a0757184eeac821ff3fc0a739235bd47.zip |
Add more spaces before '('.
This patch fixes more places where a space should have been present before '(' in accordance with the GNU Coding Standards (as with the previous patch, mainly for calls to sizeof). Tested with build-many-glibcs.py. * sysdeps/powerpc/powerpc32/dl-machine.c (__elf_machine_fixup_plt): Use space before '('. (__process_machine_rela): Likewise. * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Likewise. * sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h (TI_BITS): Likewise. * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise. * sysdeps/powerpc/test-arith.c (union_t): Likewise. (pattern): Likewise. (delta): Likewise. (check_result): Likewise. (check_excepts): Likewise. (check_op): Likewise. (fail_xr): Likewise. * sysdeps/unix/alpha/sysdep.h (syscall_promote): Likewise. * sysdeps/unix/sysv/linux/alpha/a.out.h (AOUTHSZ): Likewise. (SCNHSZ): Likewise. * sysdeps/unix/sysv/linux/hppa/makecontext.c (FRAME_SIZE_BYTES): Likewise. (ARGS): Likewise. (__makecontext): Likewise. * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (ucontext_t): Likewise.
Diffstat (limited to 'sysdeps/powerpc/powerpc64')
-rw-r--r-- | sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h | 2 | ||||
-rw-r--r-- | sysdeps/powerpc/powerpc64/register-dump.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h b/sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h index fac5dd0347..ac74097d44 100644 --- a/sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h +++ b/sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h @@ -6,7 +6,7 @@ typedef int TItype __attribute__ ((mode (TI))); typedef unsigned int UTItype __attribute__ ((mode (TI))); -#define TI_BITS (__CHAR_BIT__ * (int)sizeof(TItype)) +#define TI_BITS (__CHAR_BIT__ * (int) sizeof (TItype)) /* The type of the result of a floating point comparison. This must match `__libgcc_cmp_return__' in GCC for the target. */ diff --git a/sysdeps/powerpc/powerpc64/register-dump.h b/sysdeps/powerpc/powerpc64/register-dump.h index 1454dc61d0..602e80ceae 100644 --- a/sysdeps/powerpc/powerpc64/register-dump.h +++ b/sysdeps/powerpc/powerpc64/register-dump.h @@ -100,15 +100,15 @@ fp28-31: 00000000000004c% 00000000000004d% 00000000000004e% 00000000000004f%\n\ static void register_dump (int fd, struct sigcontext *ctx) { - char buffer[sizeof(dumpform)]; + char buffer[sizeof (dumpform)]; char *bufferpos; unsigned regno; unsigned long *regs = (unsigned long *)(ctx->regs); - memcpy(buffer, dumpform, sizeof(dumpform)); + memcpy(buffer, dumpform, sizeof (dumpform)); /* Generate the output. */ - while ((bufferpos = memchr (buffer, '%', sizeof(dumpform)))) + while ((bufferpos = memchr (buffer, '%', sizeof (dumpform)))) { regno = xtoi (bufferpos[-1]) | xtoi (bufferpos[-2]) << 4; memset (bufferpos-2, '0', 3); @@ -116,7 +116,7 @@ register_dump (int fd, struct sigcontext *ctx) } /* Write the output. */ - write (fd, buffer, sizeof(buffer) - 1); + write (fd, buffer, sizeof (buffer) - 1); } |