]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* repo.c (finish_repo): Fix typo.
authormatz <matz@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Jun 2010 16:08:29 +0000 (16:08 +0000)
committermatz <matz@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Jun 2010 16:08:29 +0000 (16:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161612 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/repo.c

index 246be90a0271e7b1fa958090228375d59dcf5cc0..f72e7a6b97f6efed0702c1db25750b4895726a1e 100644 (file)
@@ -1,3 +1,7 @@
+2010-06-30  Michael Matz  <matz@suse.de>
+
+       * repo.c ((finish_repo): Fix typo.
+
 2010-06-30  Nathan Froyd  <froydnj@codesourcery.com>
 
        * parser.c (cp_parser_omp_for_loop): Use a VEC for for_block.
index 15c6d658a8e32fcf6a566f09e3818ca8276d9a29..2a08c8fa412411ee84c1d15294153d3d64bafb44 100644 (file)
@@ -269,7 +269,7 @@ finish_repo (void)
 
   for (ix = VEC_length (tree, pending_repo) - 1;
        VEC_iterate (tree, pending_repo, ix, val);
-       ix--);
+       ix--)
     {
       tree name = DECL_ASSEMBLER_NAME (val);
       char type = IDENTIFIER_REPO_CHOSEN (name) ? 'C' : 'O';