From 8e539071f46481f3410813be4414b6a8f08b0b50 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 13 Jul 1998 16:27:34 -0600 Subject: [PATCH] * search.c (my_tree_cons): The bitfield is at index 2. From-SVN: r21117 --- gcc/cp/ChangeLog | 4 ++++ gcc/cp/search.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 199f09002493..f6a71ddaef26 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +Mon Jul 13 23:25:28 1998 Martin von Lvwis + + * search.c (my_tree_cons): The bitfield is at index 2. + Mon Jul 13 17:21:01 1998 Nick Clifton * lang-options.h: Format changed to work with new --help support diff --git a/gcc/cp/search.c b/gcc/cp/search.c index 2e71de303a39..b58c61fab64b 100644 --- a/gcc/cp/search.c +++ b/gcc/cp/search.c @@ -266,7 +266,7 @@ my_tree_cons (purpose, value, chain) /* The type of the last on the LHS of this statement must be a pointer to the same type as the bitfields in struct tree_common. Otherwise we may write beyond our intended area. */ - ((unsigned *)p)[3] = 0; + ((unsigned *)p)[2] = 0; TREE_SET_CODE (p, TREE_LIST); TREE_PURPOSE (p) = purpose; TREE_VALUE (p) = value; -- 2.47.2