gcc.c (main): Quiet compiler warnings.

* gcc.c (main): Quiet compiler warnings.  argv is assumed to be
        writable in parts of the GCC code.

From-SVN: r34550
This commit is contained in:
David O'Brien 2000-06-14 16:35:16 +00:00 committed by Jeff Law
parent db3d8cded1
commit e9cefc3e99
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2000-06-14 David O'Brien <obrien@FreeBSD.org>
* gcc.c (main): Quiet compiler warnings. argv is assumed to be
writable in parts of the GCC code.
* config/elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf
specification match cast.

View File

@ -5135,7 +5135,7 @@ extern int main PARAMS ((int, const char **));
int
main (argc, argv)
int argc;
const char **argv;
char **argv;
{
register size_t i;
size_t j;