From: Kazu Hirata Date: Fri, 1 Apr 2005 14:03:36 +0000 (+0000) Subject: * tree-inline.c: Fix a typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3cf1107531370bc19dff50f66e151fc1aaafde9a;p=gcc.git * tree-inline.c: Fix a typo. From-SVN: r97391 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1b9540fc3d..03464628c28 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-01 Kazu Hirata + + * tree-inline.c: Fix a typo. + 2005-04-01 Nathan Sidwell * configure.ac (enable-checking): Explicitly set all variables for 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);