diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2017-04-04 12:19:47 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2017-04-04 12:19:47 +0100 |
commit | 54fa7033322ab64fb06d82e17815e7b7b66bb0bd (patch) | |
tree | 117bd5b67f9a146fb435494d0b9120cb76089890 | |
parent | b1fd967c2cfb38bdb42b986ca78deab2c2fc613e (diff) | |
download | gcc-54fa7033322ab64fb06d82e17815e7b7b66bb0bd.zip gcc-54fa7033322ab64fb06d82e17815e7b7b66bb0bd.tar.gz gcc-54fa7033322ab64fb06d82e17815e7b7b66bb0bd.tar.bz2 |
* ansidecl.h (ATTRIBUTE_PACKED): Fix typo in comment.
From-SVN: r246677
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/ansidecl.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 2e927cb..9571a46 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2017-04-04 Jonathan Wakely <jwakely@redhat.com> + + * ansidecl.h (ATTRIBUTE_PACKED): Fix typo in comment. + 2017-02-25 Jakub Jelinek <jakub@redhat.com> PR debug/77589 diff --git a/include/ansidecl.h b/include/ansidecl.h index 6c0c837..25f33da 100644 --- a/include/ansidecl.h +++ b/include/ansidecl.h @@ -252,7 +252,7 @@ So instead we use the macro below and test it against specific values. */ # endif /* GNUC >= 3.0 */ #endif /* ATTRIBUTE_ALIGNED_ALIGNOF */ -/* Useful for structures whose layout must much some binary specification +/* Useful for structures whose layout must match some binary specification regardless of the alignment and padding qualities of the compiler. */ #ifndef ATTRIBUTE_PACKED # define ATTRIBUTE_PACKED __attribute__ ((packed)) |