This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Redeclaration of regcache_register_status differs from previous declaration


Hi, I've never submitted a patch to gdb before, I don't know how to do
this, and I searched the wiki couldn't find more info. I was trying to
compile gdb on aix

0|myuser@abox Downloads $ uname -a
AIX abox 1 6 00C2EE1A4C00

Was configuring with:
 ./configure --prefix=/home/myuser/chrooted --disable-option-checking
--disable-libada --disable-libssp --disable-build-with-cxx
--disable-ppl-version-check  --disable-cloog-version-check
--disable-objc-gc --enable-serial-configure --disable-maintainer-mode
--disable-stage1-checking --disable-werror --disable-sim

Which went fine , I did a make, which ended in:


"regcache.c", line 229.9: 1506-068 (W) Operation between types "signed
char*" and "unsigned char*" is not allowed.
"regcache.c", line 236.9: 1506-068 (W) Operation between types "signed
char*" and "unsigned char*" is not allowed.
"regcache.c", line 415.1: 1506-343 (S) Redeclaration of
regcache_register_status differs from previous declaration on line 66
of "regcache.h".
"regcache.c", line 415.1: 1506-050 (I) Return type "int" in
redeclaration is not compatible with the previous return type "enum
register_status".
"regcache.c", line 417.3: 1506-045 (S) Undeclared identifier __func__.
make: 1254-004 The error code from the last command is 1.

Currently:
gdb/regcache.c
 414 int
 415 regcache_register_status (const struct regcache *regcache, int regnum)

Definition in regcache.h:
gdb/regcache.h
 66 enum register_status regcache_register_status (const struct
regcache *regcache,
 67                                                int regnum);


Should be:
 414 enum register_status
 415 regcache_register_status (const struct regcache *regcache, int regnum)

(So i kinda decided to post a patch, which sounded awesome :p )
Patch:
--- regcache.c  2012-09-28 07:12:18.019876000 -0400
+++ regcache_fixed.c    2012-09-28 07:12:19.049855400 -0400
@@ -411,7 +411,7 @@
   return newbuf;
 }

-int
+enum register_status
 regcache_register_status (const struct regcache *regcache, int regnum)
 {
   gdb_assert (regcache != NULL);




My sincere apologies if this shouldn't have been posted here.

--
Pirabarlen Cheenaramen | $3|v3n
L'escalier

/*memory is like prison*/ (user==selven)?free(user):user=malloc(sizeof(brain));

Attachment: regcache_patch.diff
Description: Binary data


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]