Addresses on MIPS are signed, and we're indeed using
regcache_cooked_read_signed to read the PC, but, we're passing it the
address of an unsigned variable, which triggers a -Wpointer-sign
warning.  I've chosen to change the variable's type.  I believe this
will end up being the same (though I can't test it).
gdb/
2013-04-19  Pedro Alves  <palves@redhat.com>
	* mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
+2013-04-19  Pedro Alves  <palves@redhat.com>
+
+       * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
+
 2013-04-19  Pedro Alves  <palves@redhat.com>
 
        * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
 
 mips_read_pc (struct regcache *regcache)
 {
   int regnum = gdbarch_pc_regnum (get_regcache_arch (regcache));
-  ULONGEST pc;
+  LONGEST pc;
 
   regcache_cooked_read_signed (regcache, regnum, &pc);
   if (is_compact_addr (pc))