Update .comm error messages to assume an unsigned value.

Update relaxing code to work in 64-bit address spaces.
This commit is contained in:
Nick Clifton
2003-06-24 11:10:47 +00:00
parent e98d298cda
commit 685736be24
7 changed files with 28 additions and 15 deletions

View File

@@ -1389,7 +1389,8 @@ s_comm (ignore)
if ((temp = get_absolute_expression ()) < 0)
{
as_warn (_(".COMMon length (%ld) < 0 ignored"), (long) temp);
as_warn (_(".COMMon length (%lu) out of range ignored"),
(unsigned long) temp);
ignore_rest_of_line ();
if (flag_mri)
mri_comment_end (stop, stopc);