diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-05-25 19:16:16 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-05-25 19:16:16 +0000 |
commit | 61f14fb0da24b24da31818298226469122420022 (patch) | |
tree | 4dda183e470ae0f7bd89f72b51c69722421a33db /gas/config/obj-bout.h | |
parent | 70756893760718d37d8d1cb312f93804950e3a30 (diff) | |
download | gdb-61f14fb0da24b24da31818298226469122420022.zip gdb-61f14fb0da24b24da31818298226469122420022.tar.gz gdb-61f14fb0da24b24da31818298226469122420022.tar.bz2 |
* config/obj-bout.h (S_GET_VALUE): Removed unnecessary cast.
Diffstat (limited to 'gas/config/obj-bout.h')
-rw-r--r-- | gas/config/obj-bout.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |