diff options
author | Nick Clifton <nickc@redhat.com> | 2003-06-24 11:10:47 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-06-24 11:10:47 +0000 |
commit | 685736be243a01effb89a6d3e81a3bc6b55fafa2 (patch) | |
tree | 4ca8154d36e997d7be84351d5ebd63a365eab792 /gas/read.c | |
parent | e98d298cda0b56de2678425854788bb88e7091c8 (diff) | |
download | gdb-685736be243a01effb89a6d3e81a3bc6b55fafa2.zip gdb-685736be243a01effb89a6d3e81a3bc6b55fafa2.tar.gz gdb-685736be243a01effb89a6d3e81a3bc6b55fafa2.tar.bz2 |
Update .comm error messages to assume an unsigned value.
Update relaxing code to work in 64-bit address spaces.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |