OSDN Git Service

PR other/21052
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 10 May 2005 00:19:28 +0000 (00:19 +0000)
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 10 May 2005 00:19:28 +0000 (00:19 +0000)
* doc/extend.texi (Type Attributes): Correct example syntax.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99485 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/doc/extend.texi

index 44126a2..b899785 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-10  Joseph S. Myers  <joseph@codesourcery.com>
+
+       PR other/21052
+       * doc/extend.texi (Type Attributes): Correct example syntax.
+
 2005-05-09  Joseph S. Myers  <joseph@codesourcery.com>
 
        PR c/21160
index acd75e4..c714c54 100644 (file)
@@ -3253,7 +3253,7 @@ struct my_unpacked_struct
     int i;
  @};
 
-struct my_packed_struct __attribute__ ((__packed__))
+struct __attribute__ ((__packed__)) my_packed_struct
   @{
      char c;
      int  i;