]> gcc.gnu.org Git - gcc.git/commitdiff
* cpplib.c (cpp_push_buffer): Fix order of arguments.
authorJeffrey A Law <law@cygnus.com>
Wed, 8 Sep 1999 08:24:39 +0000 (08:24 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 8 Sep 1999 08:24:39 +0000 (02:24 -0600)
From-SVN: r29201

gcc/ChangeLog
gcc/cpplib.c

index fe68be0b964bb8eabc0d70c0e90b93c9a3466b70..2ddf77ef1591056efbec9e306aed173e2b17da2d 100644 (file)
@@ -1,3 +1,7 @@
+Wed Sep  8 02:23:08 1999  Jeffrey A Law  (law@cygnus.com)
+
+       * cpplib.c (cpp_push_buffer): Fix order of arguments.
+
 Wed Sep  8 04:44:09 1999  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
        * rtl.h (obstack_alloc_rtx): Removed, it's now static in
index 1c85ba791c5e07a7e0277c484522e35d23e10834..4ac7f5176270891451c7f1725e0a3f8987a05357 100644 (file)
@@ -718,7 +718,7 @@ cpp_push_buffer (pfile, buffer, length)
       return NULL;
     }
 
-  new = (cpp_buffer *) xcalloc (sizeof (cpp_buffer), 1);
+  new = (cpp_buffer *) xcalloc (1, sizeof (cpp_buffer));
 
   new->if_stack = pfile->if_stack;
   new->cleanup = null_cleanup;
This page took 0.074912 seconds and 5 git commands to generate.