clipper.h (ASM_OUTPUT_REG_POP): Fix typo.

* clipper.h (ASM_OUTPUT_REG_POP): Fix typo.

	* tlink.c (recompile_files): Copy strings passed to `putenv'.

From-SVN: r46904
This commit is contained in:
Kaveh R. Ghazi 2001-11-09 23:13:22 +00:00 committed by Kaveh Ghazi
parent 4fdc14caaa
commit 137bb46a78
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2001-11-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* clipper.h (ASM_OUTPUT_REG_POP): Fix typo.
* tlink.c (recompile_files): Copy strings passed to `putenv'.
2001-11-09 Geoffrey Keating <geoffk@redhat.com>
* tree.h (TYPE_VOLATILE): Trap use not on TYPEs.

View File

@ -1020,7 +1020,7 @@ do \
It need not be very fast code. */
#define ASM_OUTPUT_REG_POP(FILE,REGNO) \
fprintf (FILE, "\t%s (sp),%s\n\t\addq $8,sp\n", \
fprintf (FILE, "\t%s (sp),%s\n\taddq $8,sp\n", \
(REGNO) < 16 ? "loadw" : "loadd", reg_names[REGNO])
/* This is how to output an element of a case-vector that is absolute */

View File

@ -495,8 +495,8 @@ recompile_files ()
{
file *f;
putenv ("COMPILER_PATH");
putenv ("LIBRARY_PATH");
putenv (xstrdup ("COMPILER_PATH"));
putenv (xstrdup ("LIBRARY_PATH"));
while ((f = file_pop ()) != NULL)
{