aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2020-09-09 15:37:58 +0200
committerTom de Vries <tdevries@suse.de>2020-09-09 15:53:24 +0200
commit5d3c12e4184a5e8d0cfda41e90bb2fcd98e7ddae (patch)
tree12e8105d3b5eb6db8b18e40c4ef058f49562f298 /gcc
parent4e03e2e08b94f65f2be3db17f880c205ec262f87 (diff)
downloadgcc-5d3c12e4184a5e8d0cfda41e90bb2fcd98e7ddae.zip
gcc-5d3c12e4184a5e8d0cfda41e90bb2fcd98e7ddae.tar.gz
gcc-5d3c12e4184a5e8d0cfda41e90bb2fcd98e7ddae.tar.bz2
[nvptx] Fix Wformat in nvptx_assemble_decl_begin
I'm running into this warning: ... src/gcc/config/nvptx/nvptx.c: In function \ ‘void nvptx_assemble_decl_begin(FILE*, const char*, const char*, \ const_tree, long int, unsigned int, bool)’: src/gcc/config/nvptx/nvptx.c:2229:29: warning: format ‘%d’ expects argument \ of type ‘int’, but argument 5 has type ‘long unsigned int’ [-Wformat=] elt_size * BITS_PER_UNIT); ^ ... which I seem to have introduced in commit b9c7fe59f9f "[nvptx] Fix array dimension in nvptx_assemble_decl_begin", but not noticed due to configuring with --disable-build-format-warnings. Fix this by using the appropriate format. Rebuild cc1 on nvptx. gcc/ChangeLog: * config/nvptx/nvptx.c (nvptx_assemble_decl_begin): Fix Wformat warning.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/nvptx/nvptx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/nvptx/nvptx.c b/gcc/config/nvptx/nvptx.c
index 6f393df..0376ad6 100644
--- a/gcc/config/nvptx/nvptx.c
+++ b/gcc/config/nvptx/nvptx.c
@@ -2224,7 +2224,7 @@ nvptx_assemble_decl_begin (FILE *file, const char *name, const char *section,
elt_size. */
init_frag.remaining = (size + elt_size - 1) / elt_size;
- fprintf (file, "%s .align %d .u%d ",
+ fprintf (file, "%s .align %d .u" HOST_WIDE_INT_PRINT_UNSIGNED " ",
section, align / BITS_PER_UNIT,
elt_size * BITS_PER_UNIT);
assemble_name (file, name);