summaryrefslogtreecommitdiffstats
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2007-09-17 16:34:47 +0000
committerNick Clifton <nickc@redhat.com>2007-09-17 16:34:47 +0000
commit5c61236951045d12cce535fbdeb726ee03844f41 (patch)
tree9c57b9218ce430558dca6acc426b9d70bb9745c6 /gas
parent4145f1d576aa2f43ec679836c45accaaf5c01d6f (diff)
downloadppe42-binutils-5c61236951045d12cce535fbdeb726ee03844f41.tar.gz
ppe42-binutils-5c61236951045d12cce535fbdeb726ee03844f41.zip
PR gas/5026
* read.c (emit_expr): Use unsigned long long values in warning message about truncated expressions.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog6
-rw-r--r--gas/read.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 12f91bfbbb..08b4801984 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,9 @@
+2007-09-17 Evandro Menezes <evandro@yahoo.com>
+
+ PR gas/5026
+ * read.c (emit_expr): Use unsigned long long values in warning
+ message about truncated expressions.
+
2007-09-17 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (intel_e04): Revert the last change.
diff --git a/gas/read.c b/gas/read.c
index 0abbdb2334..19b434f30b 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -4106,8 +4106,8 @@ emit_expr (expressionS *exp, unsigned int nbytes)
&& ((get & mask) != mask
|| (get & hibit) == 0))
{ /* Leading bits contain both 0s & 1s. */
- as_warn (_("value 0x%lx truncated to 0x%lx"),
- (unsigned long) get, (unsigned long) use);
+ as_warn (_("value 0x%llx truncated to 0x%llx"),
+ (unsigned long long) get, (unsigned long long) use);
}
/* Put bytes in right order. */
md_number_to_chars (p, use, (int) nbytes);
OpenPOWER on IntegriCloud