* vec.c (vec_assert_fail): Remove duplicate 'function'.
authorNathan Sidwell <nathan@codesourcery.com>
Thu, 8 Jul 2004 09:45:19 +0000 (09:45 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Thu, 8 Jul 2004 09:45:19 +0000 (09:45 +0000)
From-SVN: r84282

gcc/ChangeLog
gcc/vec.c

index 9baf0be323b9b73f6352c5de6d9b28d7d83c90e2..74b28b3a8c83a47a9b863c88af0ab8f6caec4690 100644 (file)
@@ -1,6 +1,9 @@
 2004-07-08  Nathan Sidwell  <nathan@codesourcery.com>
 
+       * vec.c (vec_assert_fail): Remove duplicate 'function'.
+
        * vec.c (vec_p_reserve, vec_o_reserve): Allocation is signed.
+
        * vec.h (VEC_alloc, VEC_embedded_size, VEC_embedded_init):
        Allocation is signed.
        (VEC_reserve): Return flag, allocation is signed.
index 9d1d8b2d2577d70de3e724af82dcbfb623a5a24d..73728a2129a443b1375302b75f92d11722838ea1 100644 (file)
--- a/gcc/vec.c
+++ b/gcc/vec.c
@@ -85,7 +85,6 @@ vec_assert_fail (const char *op, const char *struct_name,
                 const char *file, size_t line, const char *function)
 {
   internal_error ("vector %s %s domain error, in %s at %s:%u",
-                 struct_name, op, function, function,
-                 trim_filename (file), line);
+                 struct_name, op, function, trim_filename (file), line);
 }
 #endif