* tree-inline.c: Fix a typo.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 1 Apr 2005 14:03:36 +0000 (14:03 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 1 Apr 2005 14:03:36 +0000 (14:03 +0000)
From-SVN: r97391

gcc/ChangeLog
gcc/tree-inline.c

index e1b9540fc3dbebbe0a130e1562443cdd9d099af1..03464628c28b860bdf10e8883e58bb1c20680db0 100644 (file)
@@ -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
index 8680a37daf773d75a599efc02ee6f3ffc5b5e170..ef284a12bdc44e870981cc1dd302c28f891b616e 100644 (file)
@@ -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);