public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* Fix SH4 register-dump.h for soft-float
@ 2016-11-07 23:19 Joseph Myers
  2016-11-14 23:38 ` Ping " Joseph Myers
  2016-11-15 20:49 ` Mike Frysinger
  0 siblings, 2 replies; 5+ messages in thread
From: Joseph Myers @ 2016-11-07 23:19 UTC (permalink / raw)
  To: libc-alpha

This patch fixes SH4 register-dump.h to declare a variable under the
same conditions on which it is used, to avoid an unused variable error
breaking the build for soft-float.

Tested (compilation only, in conjunction with other fixes) for SH4
soft-float.

2016-11-07  Joseph Myers  <joseph@codesourcery.com>

	* sysdeps/unix/sysv/linux/sh/sh4/register-dump.h (register_dump):
	Only declare fpregs if [__SH_FPU_ANY__].

diff --git a/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h b/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h
index 4a642ab..154824d 100644
--- a/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h
+++ b/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h
@@ -56,7 +56,9 @@ static void
 register_dump (int fd, struct sigcontext *ctx)
 {
   char regs[22][8];
+#ifdef __SH_FPU_ANY__
   char fpregs[34][8];
+#endif
   struct iovec iov[22 * 2 + 34 * 2 + 2];
   size_t nr = 0;
 

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-16  3:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-07 23:19 Fix SH4 register-dump.h for soft-float Joseph Myers
2016-11-14 23:38 ` Ping " Joseph Myers
2016-11-15 20:49 ` Mike Frysinger
2016-11-16  1:40   ` Joseph Myers
2016-11-16  3:16     ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).