* cccp.c (do_include): Avoid initialization of automatic variable.
authorPhilippe De Muyter <phdm@macqel.be>
Sun, 28 Nov 1999 07:56:53 +0000 (08:56 +0100)
committerJeff Law <law@gcc.gnu.org>
Sun, 28 Nov 1999 07:56:53 +0000 (00:56 -0700)
From-SVN: r30682

gcc/ChangeLog
gcc/cccp.c

index 27dc939437e4e4b312cf5e3958a01592235ff8b3..7836fbe0feae3e0498eb83ebfe8c22e9ac968fbe 100644 (file)
@@ -1,5 +1,7 @@
 Sun Nov 28 00:48:15 1999  Philippe De Muyter  <phdm@macqel.be>
 
+       * cccp.c (do_include): Avoid initialization of automatic variable.
+
        * integrate.c (mark_stores): Function definition made void, to match
        previous declaration.
        * regclass.c (dump_regclass): Ditto.
index ebdbd4ca970274d8f5d7fb8c6e8aee64d1c5413e..ef56112773429757b64297817106f6ec2cbc4fef 100644 (file)
@@ -4554,7 +4554,9 @@ get_filename:
         since it would put extra spaces in include file names.  */
       U_CHAR *src;
       int errors_before_expansion = errors;
-      FILE_BUF trybuf = expand_to_temp_buffer (buf, limit, 1, 0);
+      FILE_BUF trybuf;
+
+      trybuf = expand_to_temp_buffer (buf, limit, 1, 0);
       if (errors != errors_before_expansion) {
        free (trybuf.buf);
        goto invalid_include_file_name;