Commit dd0d10e8 by Per Bothner Committed by Per Bothner

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
parent ce7f2acd
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.
......
......@@ -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++)
......
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