diff options
author | Alan Modra <amodra@gmail.com> | 2006-06-05 12:45:34 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-06-05 12:45:34 +0000 |
commit | 65ede3f489244a68f11f8ac3f9b82ac4046b76bc (patch) | |
tree | b527e583524e2fe93d5f0a22d17e35b44b5d4f57 | |
parent | cb015bd9112f7398c63749b57dbf27247cb43fb3 (diff) | |
download | gdb-65ede3f489244a68f11f8ac3f9b82ac4046b76bc.zip gdb-65ede3f489244a68f11f8ac3f9b82ac4046b76bc.tar.gz gdb-65ede3f489244a68f11f8ac3f9b82ac4046b76bc.tar.bz2 |
* ldexp.c (exp_get_abs_int): Make error message the same as
others emitted in this file.
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ldexp.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 05bca68..6359afa 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ 2006-06-05 Alan Modra <amodra@bigpond.net.au> + * ldexp.c (exp_get_abs_int): Make error message the same as + others emitted in this file. + +2006-06-05 Alan Modra <amodra@bigpond.net.au> + * config.in: Regenerate. 2006-06-05 Alan Modra <amodra@bigpond.net.au> @@ -1,6 +1,6 @@ /* This module handles expression trees. Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005 + 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>. @@ -1090,7 +1090,7 @@ exp_get_abs_int (etree_type *tree, int def, char *name) return expld.result.value; } else if (name != NULL && expld.phase != lang_mark_phase_enum) - einfo (_("%F%S non constant expression for %s\n"), name); + einfo (_("%F%S nonconstant expression for %s\n"), name); } return def; } |