Merge pull request #119 from gnu-mcu-eclipse/riscv-upd

Update to master (Aug 10, 2017)
This commit is contained in:
Tim Newsome
2017-10-02 11:56:19 -07:00
committed by GitHub
30 changed files with 1681 additions and 630 deletions
+4 -4
View File
@@ -3037,16 +3037,16 @@ static void handle_md_output(struct command_context *cmd_ctx,
const char *value_fmt;
switch (size) {
case 8:
value_fmt = "%16.16llx ";
value_fmt = "%16.16"PRIx64" ";
break;
case 4:
value_fmt = "%8.8x ";
value_fmt = "%8.8"PRIx64" ";
break;
case 2:
value_fmt = "%4.4x ";
value_fmt = "%4.4"PRIx64" ";
break;
case 1:
value_fmt = "%2.2x ";
value_fmt = "%2.2"PRIx64" ";
break;
default:
/* "can't happen", caller checked */