* cpplib.c (cpp_push_buffer): Fix order of arguments.

From-SVN: r29201
This commit is contained in:
Jeffrey A Law 1999-09-08 08:24:39 +00:00 committed by Jeff Law
parent 6659980655
commit 236d1439f3
2 changed files with 5 additions and 1 deletions

View 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

View 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;