Merge pull request #63 from riscv/crc64

Accept 64-bit addresses in CRC requests.
This commit is contained in:
Palmer Dabbelt 2017-06-15 12:15:49 -07:00 committed by GitHub
commit 1a69308621
1 changed files with 1 additions and 1 deletions

View File

@ -2435,7 +2435,7 @@ static int gdb_query_packet(struct connection *connection,
char gdb_reply[10]; char gdb_reply[10];
char *separator; char *separator;
uint32_t checksum; uint32_t checksum;
uint32_t addr = 0; target_addr_t addr = 0;
uint32_t len = 0; uint32_t len = 0;
/* skip command character */ /* skip command character */