diff options
author | DJ Delorie <dj@redhat.com> | 2000-12-04 12:21:42 -0500 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2000-12-04 12:21:42 -0500 |
commit | 7d4923724f12593d951cbe873d0e6456f7082fc0 (patch) | |
tree | ba13af50747ad01e44a50c1255e3c7660f88b5ff /gcc/print-tree.c | |
parent | 62c079055503146a2ee52174e1cfce88da650a22 (diff) | |
download | gcc-7d4923724f12593d951cbe873d0e6456f7082fc0.zip gcc-7d4923724f12593d951cbe873d0e6456f7082fc0.tar.gz gcc-7d4923724f12593d951cbe873d0e6456f7082fc0.tar.bz2 |
print-tree.c (print_node): target-specific builtins print numbers, not names.
* print-tree.c (print_node): target-specific builtins print
numbers, not names.
From-SVN: r38004
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index d0073fd..97441d3 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -403,9 +403,14 @@ print_node (file, prefix, node, indent) fprintf (file, HOST_WIDE_INT_PRINT_DEC, DECL_FRAME_SIZE (node)); } else if (DECL_BUILT_IN (node)) - fprintf (file, " built-in %s:%s", - built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)], - built_in_names[(int) DECL_FUNCTION_CODE (node)]); + { + if (DECL_BUILT_IN_CLASS (node) == BUILT_IN_MD) + fprintf (file, " built-in BUILT_IN_MD %d", DECL_FUNCTION_CODE (node)); + else + fprintf (file, " built-in %s:%s", + built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)], + built_in_names[(int) DECL_FUNCTION_CODE (node)]); + } if (DECL_POINTER_ALIAS_SET_KNOWN_P (node)) { |