Skip to content

Commit

Permalink
Use print format specifiers for typedefs
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Oct 20, 2023
1 parent 71f54da commit 13f2e0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sst/elements/vanadis/vinsloader.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class VanadisInstructionLoader {
}

if(output_verbosity >= 16) {
output->verbose(CALL_INFO, 16, VANADIS_DBG_INS_LDR_FLG, "[ins-loader] ---> hit (addr=0x%llx), caching line in predecoder.\n",
output->verbose(CALL_INFO, 16, VANADIS_DBG_INS_LDR_FLG, "[ins-loader] ---> hit (addr=0x%" PRI_ADDR "), caching line in predecoder.\n",
resp->pAddr);
}

Expand Down Expand Up @@ -159,7 +159,7 @@ class VanadisInstructionLoader {

if(output_verbosity >= 16) {
output->verbose(CALL_INFO, 16, VANADIS_DBG_INS_LDR_FLG,
"[fill-decode]: ins-addr: 0x%llx line-offset: %" PRIu64 " line-start=%" PRIu64 " / 0x%llx\n",
"[fill-decode]: ins-addr: 0x%" PRI_ADDR " line-offset: %" PRIu64 " line-start=%" PRIu64 " / 0x%" PRI_ADDR "\n",
addr, inst_line_offset, cache_line_start, cache_line_start);
}

Expand Down

0 comments on commit 13f2e0f

Please sign in to comment.