* ldexp.c (new_abs): Init new.str.
This commit is contained in:
parent
0af6db78f3
commit
20c2cbe38d
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-02-17 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* ldexp.c (new_abs): Init new.str.
|
||||||
|
|
||||||
2005-02-15 Mark Mitchell <mark@codesourcery.com>
|
2005-02-15 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* configure.in (AC_CHECK_FUNCS): Add glob.
|
* configure.in (AC_CHECK_FUNCS): Add glob.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* This module handles expression trees.
|
/* This module handles expression trees.
|
||||||
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
||||||
2001, 2002, 2003, 2004
|
2001, 2002, 2003, 2004, 2005
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
|
Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
|
||||||
|
|
||||||
|
@ -144,6 +144,7 @@ new_abs (bfd_vma value)
|
||||||
new.valid_p = TRUE;
|
new.valid_p = TRUE;
|
||||||
new.section = abs_output_section;
|
new.section = abs_output_section;
|
||||||
new.value = value;
|
new.value = value;
|
||||||
|
new.str = NULL;
|
||||||
return new;
|
return new;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue