aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-05-25 19:16:16 +0000
committerIan Lance Taylor <ian@airs.com>1993-05-25 19:16:16 +0000
commit61f14fb0da24b24da31818298226469122420022 (patch)
tree4dda183e470ae0f7bd89f72b51c69722421a33db /gas
parent70756893760718d37d8d1cb312f93804950e3a30 (diff)
downloadgdb-61f14fb0da24b24da31818298226469122420022.zip
gdb-61f14fb0da24b24da31818298226469122420022.tar.gz
gdb-61f14fb0da24b24da31818298226469122420022.tar.bz2
* config/obj-bout.h (S_GET_VALUE): Removed unnecessary cast.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog9
-rw-r--r--gas/config/obj-bout.h2
2 files changed, 10 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 08ea455..ae17364 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,12 @@
+Tue May 25 11:59:07 1993 Ian Lance Taylor (ian@cygnus.com)
+
+ * config/obj-bout.h (S_GET_VALUE): Removed unnecessary cast.
+
+Thu May 20 19:14:24 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
+
+ * config/tc-m68k.c (md_apply_fix_2): Straighten out check for
+ invalid values.
+
Wed May 19 07:33:17 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
* config/tc-h5000.c (build_bytes): Understand @rd mode and build
diff --git a/gas/config/obj-bout.h b/gas/config/obj-bout.h
index 4281710..155b27e 100644
--- a/gas/config/obj-bout.h
+++ b/gas/config/obj-bout.h
@@ -200,7 +200,7 @@ struct relocation_info
/* Accessors */
/* The value of the symbol */
-#define S_GET_VALUE(s) ((unsigned long) ((s)->sy_symbol.n_value))
+#define S_GET_VALUE(s) ((s)->sy_symbol.n_value)
/* The name of the symbol */
#define S_GET_NAME(s) ((s)->sy_symbol.n_un.n_name)
/* The pointer to the string table */