diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-01 14:03:36 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-01 14:03:36 +0000 |
commit | 3cf1107531370bc19dff50f66e151fc1aaafde9a (patch) | |
tree | c17960bb78950f0a82daef36075d4b56ca0d0d16 | |
parent | cdce5c164ebf7b6c92f7eee633bd1552b1603438 (diff) | |
download | gcc-3cf1107531370bc19dff50f66e151fc1aaafde9a.zip gcc-3cf1107531370bc19dff50f66e151fc1aaafde9a.tar.gz gcc-3cf1107531370bc19dff50f66e151fc1aaafde9a.tar.bz2 |
* tree-inline.c: Fix a typo.
From-SVN: r97391
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-inline.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1b9540..0346462 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 8680a37..ef284a1 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -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); |