public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Add __packed to struct ldieee
@ 2017-04-16  8:35 Kito Cheng
  2017-04-18 10:27 ` Corinna Vinschen
  0 siblings, 1 reply; 2+ messages in thread
From: Kito Cheng @ 2017-04-16  8:35 UTC (permalink / raw)
  To: newlib

[-- Attachment #1: Type: text/plain, Size: 175 bytes --]

I've seem struct ldieee issue reported[1] 1 years ago, and problem
still here, so here is the patch for this problem.

[1] https://sourceware.org/ml/newlib/2016/msg00043.html

[-- Attachment #2: 0001-Add-__packed-to-struct-ldieee.patch --]
[-- Type: text/x-patch, Size: 2071 bytes --]

From e722ad01d0c59368eacc88c9a380a524313b19eb Mon Sep 17 00:00:00 2001
From: Kito Cheng <kito.cheng@gmail.com>
Date: Sun, 9 Apr 2017 00:06:06 +0800
Subject: [PATCH] Add __packed to struct ldieee

 - We don't want any padding in struct ldieee, otherwise the offset
   might wrong in most compiler.
---
 newlib/libc/stdio/vfieeefp.h | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/newlib/libc/stdio/vfieeefp.h b/newlib/libc/stdio/vfieeefp.h
index 7169119..e85cabb 100644
--- a/newlib/libc/stdio/vfieeefp.h
+++ b/newlib/libc/stdio/vfieeefp.h
@@ -35,6 +35,7 @@
 #include <float.h>
 #include <errno.h>
 #include <sys/config.h>
+#include <sys/cdefs.h>
 
 #ifdef __IEEE_LITTLE_ENDIAN
 #define IEEE_8087
@@ -71,7 +72,7 @@ struct ldieee
   unsigned manh:23;
   unsigned exp:8;
   unsigned sign:1;
-};
+} __packed;
 #elif LDBL_MANT_DIG == 53
 struct ldieee
 {
@@ -79,7 +80,7 @@ struct ldieee
   unsigned manh:32;
   unsigned exp:11;
   unsigned sign:1;
-};
+} __packed;
 #elif LDBL_MANT_DIG == 64
 struct ldieee
 {
@@ -87,7 +88,7 @@ struct ldieee
   unsigned manh:32;
   unsigned exp:15;
   unsigned sign:1;
-};
+} __packed;
 #elif LDBL_MANT_DIG > 64
 struct ldieee
 {
@@ -97,7 +98,7 @@ struct ldieee
   unsigned manh:32;
   unsigned exp:15;
   unsigned sign:1;
-};
+} __packed;
 #endif /* LDBL_MANT_DIG */
 #else  /* !IEEE_8087 */
 #if LDBL_MANT_DIG == 24
@@ -106,7 +107,7 @@ struct ldieee
   unsigned sign:1;
   unsigned exp:8;
   unsigned manh:23;
-};
+} __packed;
 #elif LDBL_MANT_DIG == 53
 struct ldieee
 {
@@ -114,7 +115,7 @@ struct ldieee
   unsigned exp:11;
   unsigned manh:32;
   unsigned manl:20;
-};
+} __packed;
 #elif LDBL_MANT_DIG == 64
 struct ldieee
 {
@@ -122,7 +123,7 @@ struct ldieee
   unsigned exp:15;
   unsigned manh:32;
   unsigned manl:32;
-};
+} __packed;
 #elif LDBL_MANT_DIG > 64
 struct ldieee
 {
@@ -132,7 +133,7 @@ struct ldieee
   unsigned manl:32;
   unsigned manl2:32;
   unsigned manl3:16;
-};
+} __packed;
 #endif /* LDBL_MANT_DIG */
 #endif /* !IEEE_8087 */
 #endif /* _WANT_IO_LONG_DOUBLE */
-- 
2.7.4


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

* Re: [PATCH] Add __packed to struct ldieee
  2017-04-16  8:35 [PATCH] Add __packed to struct ldieee Kito Cheng
@ 2017-04-18 10:27 ` Corinna Vinschen
  0 siblings, 0 replies; 2+ messages in thread
From: Corinna Vinschen @ 2017-04-18 10:27 UTC (permalink / raw)
  To: newlib

[-- Attachment #1: Type: text/plain, Size: 629 bytes --]

On Apr 16 16:35, Kito Cheng wrote:
> I've seem struct ldieee issue reported[1] 1 years ago, and problem
> still here, so here is the patch for this problem.
> 
> [1] https://sourceware.org/ml/newlib/2016/msg00043.html

> From e722ad01d0c59368eacc88c9a380a524313b19eb Mon Sep 17 00:00:00 2001
> From: Kito Cheng <kito.cheng@gmail.com>
> Date: Sun, 9 Apr 2017 00:06:06 +0800
> Subject: [PATCH] Add __packed to struct ldieee
> 
>  - We don't want any padding in struct ldieee, otherwise the offset
>    might wrong in most compiler.

Pushed.


Thanks,
Corinna

-- 
Corinna Vinschen
Cygwin Maintainer
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2017-04-18 10:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-16  8:35 [PATCH] Add __packed to struct ldieee Kito Cheng
2017-04-18 10:27 ` Corinna Vinschen

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).