Commit 7d492372 by DJ Delorie Committed by DJ Delorie

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
parent 62c07905
2000-12-04 DJ Delorie <dj@redhat.com>
* print-tree.c (print_node): target-specific builtins print
numbers, not names.
2000-12-04 Jason Merrill <jason@redhat.com> 2000-12-04 Jason Merrill <jason@redhat.com>
* stor-layout.c (int_mode_for_mode): Handle MODE_VECTOR_INT, * stor-layout.c (int_mode_for_mode): Handle MODE_VECTOR_INT,
......
...@@ -403,9 +403,14 @@ print_node (file, prefix, node, indent) ...@@ -403,9 +403,14 @@ print_node (file, prefix, node, indent)
fprintf (file, HOST_WIDE_INT_PRINT_DEC, DECL_FRAME_SIZE (node)); fprintf (file, HOST_WIDE_INT_PRINT_DEC, DECL_FRAME_SIZE (node));
} }
else if (DECL_BUILT_IN (node)) else if (DECL_BUILT_IN (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", fprintf (file, " built-in %s:%s",
built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)], built_in_class_names[(int) DECL_BUILT_IN_CLASS (node)],
built_in_names[(int) DECL_FUNCTION_CODE (node)]); built_in_names[(int) DECL_FUNCTION_CODE (node)]);
}
if (DECL_POINTER_ALIAS_SET_KNOWN_P (node)) if (DECL_POINTER_ALIAS_SET_KNOWN_P (node))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment