aboutsummaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorGrazvydas Ignotas <[email protected]>2018-02-03 23:59:05 +0200
committerGrazvydas Ignotas <[email protected]>2018-02-10 17:59:02 +0200
commit9b9a89cd795fda462a6ee898ef6e5135ca79d94e (patch)
treefe85cb242a3478e630a3db665bcce76fd738cce3 /src/intel
parentff0e3fa1fe664f6a7aba289ed36fca9ff505bc18 (diff)
intel/compiler: fix 64bit value prints on 32bit
Fix the following: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘uint64_t {aka long long unsigned int}. Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/compiler/brw_disasm.c4
-rw-r--r--src/intel/compiler/brw_nir_analyze_ubo_ranges.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/compiler/brw_disasm.c b/src/intel/compiler/brw_disasm.c
index 1a94ed39540..429ed781404 100644
--- a/src/intel/compiler/brw_disasm.c
+++ b/src/intel/compiler/brw_disasm.c
@@ -1249,10 +1249,10 @@ imm(FILE *file, const struct gen_device_info *devinfo, enum brw_reg_type type,
{
switch (type) {
case BRW_REGISTER_TYPE_UQ:
- format(file, "0x%016lxUQ", brw_inst_imm_uq(devinfo, inst));
+ format(file, "0x%016"PRIx64"UQ", brw_inst_imm_uq(devinfo, inst));
break;
case BRW_REGISTER_TYPE_Q:
- format(file, "%ldQ", brw_inst_imm_uq(devinfo, inst));
+ format(file, "%"PRId64"Q", brw_inst_imm_uq(devinfo, inst));
break;
case BRW_REGISTER_TYPE_UD:
format(file, "0x%08xUD", brw_inst_imm_ud(devinfo, inst));
diff --git a/src/intel/compiler/brw_nir_analyze_ubo_ranges.c b/src/intel/compiler/brw_nir_analyze_ubo_ranges.c
index 32fbf8fccd9..d58fe3dd2e3 100644
--- a/src/intel/compiler/brw_nir_analyze_ubo_ranges.c
+++ b/src/intel/compiler/brw_nir_analyze_ubo_ranges.c
@@ -158,7 +158,7 @@ print_ubo_entry(FILE *file,
struct ubo_block_info *info = get_block_info(state, entry->range.block);
fprintf(file,
- "block %2d, start %2d, length %2d, bits = %zx, "
+ "block %2d, start %2d, length %2d, bits = %"PRIx64", "
"benefit %2d, cost %2d, score = %2d\n",
entry->range.block, entry->range.start, entry->range.length,
info->offsets, entry->benefit, entry->range.length, score(entry));