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:
parent
4fdc14caaa
commit
137bb46a78
@ -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.
|
||||
|
@ -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 */
|
||||
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user