Commit a669372a by Jason Merrill

revert accidental commit

From-SVN: r144271
parent 98b80692
...@@ -44,23 +44,7 @@ cxx_print_decl (FILE *file, tree node, int indent) ...@@ -44,23 +44,7 @@ cxx_print_decl (FILE *file, tree node, int indent)
if (!CODE_CONTAINS_STRUCT (TREE_CODE (node), TS_DECL_COMMON) if (!CODE_CONTAINS_STRUCT (TREE_CODE (node), TS_DECL_COMMON)
|| !DECL_LANG_SPECIFIC (node)) || !DECL_LANG_SPECIFIC (node))
return; return;
if (TREE_CODE (node) == FUNCTION_DECL)
{
int flags = TFF_DECL_SPECIFIERS|TFF_RETURN_TYPE
|TFF_FUNCTION_DEFAULT_ARGUMENTS|TFF_EXCEPTION_SPECIFICATION ;
indent_to (file, indent + 3);
fprintf (file, " full-name \"%s\"", decl_as_string (node, flags));
}
else if (TREE_CODE (node) == TEMPLATE_DECL)
{
indent_to (file, indent + 3);
fprintf (file, " full-name \"%s\"",
decl_as_string (node, TFF_TEMPLATE_HEADER));
}
indent_to (file, indent + 3); indent_to (file, indent + 3);
if (DECL_EXTERNAL (node) && DECL_NOT_REALLY_EXTERN (node))
fprintf (file, " not-really-extern");
if (TREE_CODE (node) == FUNCTION_DECL if (TREE_CODE (node) == FUNCTION_DECL
&& DECL_PENDING_INLINE_INFO (node)) && DECL_PENDING_INLINE_INFO (node))
fprintf (file, " pending-inline-info %p", fprintf (file, " pending-inline-info %p",
...@@ -97,9 +81,6 @@ cxx_print_type (FILE *file, tree node, int indent) ...@@ -97,9 +81,6 @@ cxx_print_type (FILE *file, tree node, int indent)
case RECORD_TYPE: case RECORD_TYPE:
case UNION_TYPE: case UNION_TYPE:
indent_to (file, indent + 4);
fprintf (file, "full-name \"%s\"",
type_as_string (node, TFF_CLASS_KEY_OR_ENUM));
break; break;
default: default:
...@@ -116,7 +97,7 @@ cxx_print_type (FILE *file, tree node, int indent) ...@@ -116,7 +97,7 @@ cxx_print_type (FILE *file, tree node, int indent)
indent_to (file, indent + 3); indent_to (file, indent + 3);
if (TYPE_NEEDS_CONSTRUCTING (node)) if (TYPE_NEEDS_CONSTRUCTING (node))
fputs ( " needs-constructor", file); fputs ( "needs-constructor", file);
if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (node)) if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (node))
fputs (" needs-destructor", file); fputs (" needs-destructor", file);
if (TYPE_HAS_DEFAULT_CONSTRUCTOR (node)) if (TYPE_HAS_DEFAULT_CONSTRUCTOR (node))
......
...@@ -9,5 +9,5 @@ short offsets[1] = { ...@@ -9,5 +9,5 @@ short offsets[1] = {
// This ensures that we get a dump whether or not the bug is present. // This ensures that we get a dump whether or not the bug is present.
void fn() { } void fn() { }
// { dg-final { scan-tree-dump-not "initialization" "gimple" } } // { dg-final { scan-tree-dump-not "initialization" "gimple" { xfail *-*-* } } }
// { dg-final { cleanup-tree-dump "gimple" } } // { dg-final { cleanup-tree-dump "gimple" } }
...@@ -2585,20 +2585,18 @@ print_call_name (pretty_printer *buffer, const_tree node) ...@@ -2585,20 +2585,18 @@ print_call_name (pretty_printer *buffer, const_tree node)
if (TREE_CODE (op0) == NON_LVALUE_EXPR) if (TREE_CODE (op0) == NON_LVALUE_EXPR)
op0 = TREE_OPERAND (op0, 0); op0 = TREE_OPERAND (op0, 0);
again:
switch (TREE_CODE (op0)) switch (TREE_CODE (op0))
{ {
case VAR_DECL: case VAR_DECL:
case PARM_DECL: case PARM_DECL:
case FUNCTION_DECL:
dump_function_name (buffer, op0); dump_function_name (buffer, op0);
break; break;
case ADDR_EXPR: case ADDR_EXPR:
case INDIRECT_REF: case INDIRECT_REF:
case NOP_EXPR: case NOP_EXPR:
op0 = TREE_OPERAND (op0, 0); dump_generic_node (buffer, TREE_OPERAND (op0, 0), 0, 0, false);
goto again; break;
case COND_EXPR: case COND_EXPR:
pp_string (buffer, "("); pp_string (buffer, "(");
......
...@@ -4316,10 +4316,12 @@ initializer_constant_valid_p (tree value, tree endtype) ...@@ -4316,10 +4316,12 @@ initializer_constant_valid_p (tree value, tree endtype)
} }
/* Support narrowing pointer differences. */ /* Support narrowing pointer differences. */
if (TREE_CODE (value) == POINTER_PLUS_EXPR)
{
ret = narrowing_initializer_constant_valid_p (value, endtype); ret = narrowing_initializer_constant_valid_p (value, endtype);
if (ret != NULL_TREE) if (ret != NULL_TREE)
return ret; return ret;
}
break; break;
case MINUS_EXPR: case MINUS_EXPR:
......
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