* gdbtk.c (gdb_loc): Correct truncation of PC on 64-bit MIPS.

This commit is contained in:
Mark Alexander 1996-12-12 02:54:55 +00:00
parent 51c6d73375
commit 78b9b17039
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ gdb_loc (clientData, interp, argc, argv)
dsprintf_append_element (result_ptr, "%d", sal.line); /* line number */
dsprintf_append_element (result_ptr, "0x%lx", pc); /* PC */
dsprintf_append_element (result_ptr, "0x%s", paddr_nz(pc)); /* PC */
return TCL_OK;
}