Commit 63185fab by Diego Novillo Committed by Diego Novillo

* c-typeck.c (same_translation_unit_p): Fix pasto.

From-SVN: r79849
parent 1d440587
2004-03-22 Diego Novillo <dnovillo@redhat.com>
* c-typeck.c (same_translation_unit_p): Fix pasto.
2004-03-22 David Edelsohn <edelsohn@gnu.org>
* params.def (PARAM_MAX_SCHED_REGION_BLOCKS): New.
......
......@@ -633,7 +633,7 @@ same_translation_unit_p (tree t1, tree t2)
while (t2 && TREE_CODE (t2) != TRANSLATION_UNIT_DECL)
switch (TREE_CODE_CLASS (TREE_CODE (t2)))
{
case 'd': t2 = DECL_CONTEXT (t1); break;
case 'd': t2 = DECL_CONTEXT (t2); break;
case 't': t2 = TYPE_CONTEXT (t2); break;
case 'b': t2 = BLOCK_SUPERCONTEXT (t2); break;
default: abort ();
......
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