summaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-01 14:03:36 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-01 14:03:36 +0000
commit0b7784b5318a48d6ce183740d51fad5cccd602a1 (patch)
treec17960bb78950f0a82daef36075d4b56ca0d0d16 /gcc/tree-inline.c
parent5391b316ffd1a919d3f8ad1772d65808bbf9801e (diff)
downloadgcc-0b7784b5318a48d6ce183740d51fad5cccd602a1.tar.gz
* tree-inline.c: Fix a typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97391 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index 8680a37daf7..ef284a12bdc 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);