2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>

Ulrich Weigand  <uweigand@de.ibm.com>

	* xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
	of c_value member.
	(read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
This commit is contained in:
Ulrich Weigand 2013-09-18 17:47:56 +00:00
parent d255f61f16
commit 086850b237
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
Ulrich Weigand <uweigand@de.ibm.com>
* xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
of c_value member.
(read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
2013-09-18 Pedro Alves <palves@redhat.com>
Yue Lu <hacklu.newborn@gmail.com>

View File

@ -94,7 +94,7 @@ struct coff_symbol
char *c_name;
int c_symnum; /* Symbol number of this entry. */
int c_naux; /* 0 if syment only, 1 if syment + auxent. */
long c_value;
CORE_ADDR c_value;
unsigned char c_sclass;
int c_secnum;
unsigned int c_type;
@ -1033,7 +1033,7 @@ read_xcoff_symtab (struct objfile *objfile, struct partial_symtab *pst)
unsigned int max_symnum;
int just_started = 1;
int depth = 0;
int fcn_start_addr = 0;
CORE_ADDR fcn_start_addr = 0;
struct coff_symbol fcn_stab_saved = { 0 };