* vec.h: Fix the example use.
authorNathan Sidwell <nathan@codesourcery.com>
Wed, 7 Jul 2004 08:25:04 +0000 (08:25 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Wed, 7 Jul 2004 08:25:04 +0000 (08:25 +0000)
From-SVN: r84195

gcc/ChangeLog
gcc/vec.h

index 0b9f703e6ebc1f93788d9a0c391c351a1120e08c..63ebf59006acdbb956191df60aee2affa3e09a44 100644 (file)
@@ -1,3 +1,7 @@
+2004-07-07  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * vec.h: Fix the example use.
+
 2004-07-06  Richard Henderson  <rth@redhat.com>
 
        * langhooks-def.h (LANG_HOOKS_GIMPLE_BEFORE_INLINING): Remove.
index 2e0ab8e0bf85ed0b73d7ac740b3d7d31b3d77743..be4aaad1977d8f9679137e4d5dee9c192453d4ad 100644 (file)
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -85,9 +85,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
    struct my_struct *s;
 
-   if (VEC_length(tree,s)) { we have some contents }
-   VEC_safe_push(tree,s,decl); // append some decl onto the end
-   for (ix = 0; (t = VEC_iterate(tree,s,ix)); ix++)
+   if (VEC_length(tree,s->v)) { we have some contents }
+   VEC_safe_push(tree,s->v,decl); // append some decl onto the end
+   for (ix = 0; (t = VEC_iterate(tree,s->v,ix)); ix++)
      { do something with t }
 
 */