Commit 3cf11075 by Kazu Hirata Committed by Kazu Hirata

* tree-inline.c: Fix a typo.

From-SVN: r97391
parent cdce5c16
2005-04-01 Kazu Hirata <kazu@cs.umass.edu>
* tree-inline.c: Fix a typo.
2005-04-01 Nathan Sidwell <nathan@codesourcery.com> 2005-04-01 Nathan Sidwell <nathan@codesourcery.com>
* configure.ac (enable-checking): Explicitly set all variables for * configure.ac (enable-checking): Explicitly set all variables for
......
...@@ -516,7 +516,7 @@ copy_body_r (tree *tp, int *walk_subtrees, void *data) ...@@ -516,7 +516,7 @@ copy_body_r (tree *tp, int *walk_subtrees, void *data)
/* If this is a constant, we have to copy the node iff the type will be /* If this is a constant, we have to copy the node iff the type will be
remapped. copy_tree_r will not copy a constant. */ remapped. copy_tree_r will not copy a constant. */
else if (CONSTANT_CLASS_P (*tp) == tcc_constant) else if (CONSTANT_CLASS_P (*tp))
{ {
tree new_type = remap_type (TREE_TYPE (*tp), id); tree new_type = remap_type (TREE_TYPE (*tp), id);
......
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