aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2003-04-14 03:13:07 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2003-04-14 03:13:07 +0000
commit7f685e177ee99a15953f2ffa4292823c8a9b88da (patch)
tree3b5aae81043167976f8a6e9e31f1cc5aa74edcc3 /gcc/print-tree.c
parent1331d16fd4b57c5927cec03b5a320bc59366a628 (diff)
downloadgcc-7f685e177ee99a15953f2ffa4292823c8a9b88da.zip
gcc-7f685e177ee99a15953f2ffa4292823c8a9b88da.tar.gz
gcc-7f685e177ee99a15953f2ffa4292823c8a9b88da.tar.bz2
tree.h (DECL_BUILT_IN_NONANSI): Remove.
* tree.h (DECL_BUILT_IN_NONANSI): Remove. * c-common.c (builtin_function_2): Don't set DECL_BUILT_IN_NONANSI. * c-decl.c (duplicate_decls): Use invariant DECL_BUILT_IN_NONANSI implies DECL_BUILT_IN to simplify logic. * print-tree.c (print_node): Don't dump DECL_BUILT_IN_NONANSI. From-SVN: r65561
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index cd18071..bb1230d 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -1,6 +1,6 @@
/* Prints out tree in human readable form - GNU C-compiler
Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
- 2001, 2002 Free Software Foundation, Inc.
+ 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GCC.
@@ -336,8 +336,6 @@ print_node (file, prefix, node, indent)
fputs (" inline", file);
if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN (node))
fputs (" built-in", file);
- if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN_NONANSI (node))
- fputs (" built-in-nonansi", file);
if (TREE_CODE (node) == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node))
fputs (" no-static-chain", file);