mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-06 01:59:48 +08:00
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
This commit is contained in:
parent
62c0790555
commit
7d4923724f
@ -1,3 +1,8 @@
|
||||
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>
|
||||
|
||||
* stor-layout.c (int_mode_for_mode): Handle MODE_VECTOR_INT,
|
||||
|
@ -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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user