Commit a43068cc by Jakub Jelinek Committed by Jakub Jelinek

* tree-object-size.c (unknown): Use HOST_WIDE_INT_M1U instead of -1.

From-SVN: r238581
parent ee78cbaa
2016-07-21 Jakub Jelinek <jakub@redhat.com>
* tree-object-size.c (unknown): Use HOST_WIDE_INT_M1U instead of -1.
2016-07-21 Andrew Sutton <andrew.n.sutton@gmail.com>
Improving concepts performance and diagnostics.
......
......@@ -43,7 +43,12 @@ struct object_size_info
unsigned int *stack, *tos;
};
static const unsigned HOST_WIDE_INT unknown[4] = { -1, -1, 0, 0 };
static const unsigned HOST_WIDE_INT unknown[4] = {
HOST_WIDE_INT_M1U,
HOST_WIDE_INT_M1U,
0,
0
};
static tree compute_object_offset (const_tree, const_tree);
static unsigned HOST_WIDE_INT addr_object_size (struct object_size_info *,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment