From bef3d81253d93e12384c061470381608d19b96cd Mon Sep 17 00:00:00 2001 From: ktkachov Date: Fri, 6 Nov 2015 13:36:17 +0000 Subject: [PATCH] [cp][committed] Fix bootstrap on arm due to print format warning * init.c (warn_placement_new_too_small): Use %wu format rather than %lu when printing bytes_avail. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229849 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/init.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index e780c86..910005d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2015-11-06 Kyrylo Tkachov + + * init.c (warn_placement_new_too_small): Use %wu format + rather than %lu when printing bytes_avail. + 2015-11-05 Cesar Philippidis Thomas Schwinge James Norris diff --git a/gcc/cp/init.c b/gcc/cp/init.c index 7386499..337797c 100644 --- a/gcc/cp/init.c +++ b/gcc/cp/init.c @@ -2447,7 +2447,7 @@ warn_placement_new_too_small (tree type, tree nelts, tree size, tree oper) "%<%T [%wu]%> and size %qwu in a region of type %qT " "and size %qwi" : "placement new constructing an object of type " - "%<%T [%lu]%> and size %qwu in a region of type %qT " + "%<%T [%wu]%> and size %qwu in a region of type %qT " "and size at most %qwu", type, tree_to_uhwi (nelts), bytes_need, TREE_TYPE (oper), -- 2.7.4