lto-cgraph.c (input_node): Use DECL_BUILT_IN.
authorRichard Guenther <rguenther@suse.de>
Thu, 11 Aug 2011 14:34:51 +0000 (14:34 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 11 Aug 2011 14:34:51 +0000 (14:34 +0000)
2011-08-11  Richard Guenther  <rguenther@suse.de>

* lto-cgraph.c (input_node): Use DECL_BUILT_IN.
* tree-vrp.c (stmt_interesting_for_vrp): Likewise.
(vrp_visit_stmt): Likewise.

From-SVN: r177668

gcc/ChangeLog
gcc/lto-cgraph.c
gcc/tree-vrp.c

index 711452a073ce7085f6914d7e4d8e08d86c2ce6e2..6b7aff65d20ee43a0795eaa7c8d28d65d9ab7862 100644 (file)
@@ -1,3 +1,9 @@
+2011-08-11  Richard Guenther  <rguenther@suse.de>
+
+       * lto-cgraph.c (input_node): Use DECL_BUILT_IN.
+       * tree-vrp.c (stmt_interesting_for_vrp): Likewise.
+       (vrp_visit_stmt): Likewise.
+
 2011-08-11  Richard Guenther  <rguenther@suse.de>
 
        PR middle-end/50040
index 00462d81e3d0d91a95439a37918ff82f6fcc300d..126ba5a01d8826d99bad9371e6581c5388228d79 100644 (file)
@@ -994,7 +994,7 @@ input_node (struct lto_file_decl_data *file_data,
      have already been read will have their tag stored in the 'aux'
      field.  Since built-in functions can be referenced in multiple
      functions, they are expected to be read more than once.  */
-  if (node->aux && !DECL_IS_BUILTIN (node->decl))
+  if (node->aux && !DECL_BUILT_IN (node->decl))
     internal_error ("bytecode stream: found multiple instances of cgraph "
                    "node %d", node->uid);
 
index 0faf53aa98534dd23b1ea9dd74e4a26b1a4b461e..6944b42e3d15bdcbb94e09faeeaa8020365f2e17 100644 (file)
@@ -5594,7 +5594,7 @@ stmt_interesting_for_vrp (gimple stmt)
              || POINTER_TYPE_P (TREE_TYPE (lhs)))
          && ((is_gimple_call (stmt)
               && gimple_call_fndecl (stmt) != NULL_TREE
-              && DECL_IS_BUILTIN (gimple_call_fndecl (stmt)))
+              && DECL_BUILT_IN (gimple_call_fndecl (stmt)))
              || !gimple_vuse (stmt)))
        return true;
     }
@@ -6432,7 +6432,7 @@ vrp_visit_stmt (gimple stmt, edge *taken_edge_p, tree *output_p)
         builtin functions.  */
       if ((is_gimple_call (stmt)
           && gimple_call_fndecl (stmt) != NULL_TREE
-          && DECL_IS_BUILTIN (gimple_call_fndecl (stmt)))
+          && DECL_BUILT_IN (gimple_call_fndecl (stmt)))
          || !gimple_vuse (stmt))
        return vrp_visit_assignment_or_call (stmt, output_p);
     }