diff options
author | Alan Modra <amodra@gmail.com> | 2007-04-20 13:42:03 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-04-20 13:42:03 +0000 |
commit | 931774a953b8d12dc80325af47bdd4860a332818 (patch) | |
tree | 6da6bc8c612130ee534fe2186a815c8893d7f207 /gas/messages.c | |
parent | f6da2ec2819291c7217ef895cd28e6f8b2a833a6 (diff) | |
download | gdb-931774a953b8d12dc80325af47bdd4860a332818.zip gdb-931774a953b8d12dc80325af47bdd4860a332818.tar.gz gdb-931774a953b8d12dc80325af47bdd4860a332818.tar.bz2 |
* messages.c (as_internal_value_out_of_range): Fix typo in
error message. Return after printing domain error.
* config/tc-ppc.c (ppc_insert_operand): Preserve low zero bits
in max when shifting right.
Diffstat (limited to 'gas/messages.c')
-rw-r--r-- | gas/messages.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/messages.c b/gas/messages.c index 5736bac..c8788dc 100644 --- a/gas/messages.c +++ b/gas/messages.c @@ -464,13 +464,14 @@ as_internal_value_out_of_range (char * prefix, abort (); /* xgettext:c-format */ - err = _("%s out of domain (%d is not a multiple of %d"); + err = _("%s out of domain (%d is not a multiple of %d)"); if (bad) as_bad_where (file, line, err, prefix, (int) val, (int) right); else as_warn_where (file, line, err, prefix, (int) val, (int) right); + return; } if ( val < HEX_MAX_THRESHOLD |