Commit ff615e83 by Richard Kenner

(copy_node): Abort if don't know size of node.

From-SVN: r12790
parent e309d4d2
......@@ -1142,6 +1142,8 @@ copy_node (node)
length = sizeof (struct tree_real_cst);
break;
}
else
abort();
case 'x': /* something random, like an identifier. */
length = sizeof (struct tree_common)
......
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