2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-03 09:20:38 +08:00

* tree-inline.c: Fix a typo.

From-SVN: r97391
This commit is contained in:
Kazu Hirata 2005-04-01 14:03:36 +00:00 committed by Kazu Hirata
parent cdce5c164e
commit 3cf1107531
2 changed files with 5 additions and 1 deletions

@ -1,3 +1,7 @@
2005-04-01 Kazu Hirata <kazu@cs.umass.edu>
* tree-inline.c: Fix a typo.
2005-04-01 Nathan Sidwell <nathan@codesourcery.com>
* configure.ac (enable-checking): Explicitly set all variables for

@ -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
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);