tree.c (build_min_nt, [...]): Don't set TREE_COMPLEXITY from input_line.

* tree.c (build_min_nt, build_min, build_min_non_dep):
	Don't set TREE_COMPLEXITY from input_line.

From-SVN: r83894
This commit is contained in:
Per Bothner 2004-06-29 23:42:43 -07:00 committed by Per Bothner
parent ce7f2acdd9
commit dd0d10e80c
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2004-06-29 Per Bothner <per@bothner.com>
* tree.c (build_min_nt, build_min, build_min_non_dep):
Don't set TREE_COMPLEXITY from input_line.
2004-06-29 Paul Brook <paul@codesourcery.com>
* init.c: Include target.h.

View File

@ -1294,7 +1294,6 @@ build_min_nt (enum tree_code code, ...)
t = make_node (code);
length = TREE_CODE_LENGTH (code);
TREE_COMPLEXITY (t) = input_line;
for (i = 0; i < length; i++)
{
@ -1321,7 +1320,6 @@ build_min (enum tree_code code, tree tt, ...)
t = make_node (code);
length = TREE_CODE_LENGTH (code);
TREE_TYPE (t) = tt;
TREE_COMPLEXITY (t) = input_line;
for (i = 0; i < length; i++)
{
@ -1352,7 +1350,6 @@ build_min_non_dep (enum tree_code code, tree non_dep, ...)
t = make_node (code);
length = TREE_CODE_LENGTH (code);
TREE_TYPE (t) = TREE_TYPE (non_dep);
TREE_COMPLEXITY (t) = input_line;
TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
for (i = 0; i < length; i++)