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

From-SVN: r79849
This commit is contained in:
Diego Novillo 2004-03-23 02:24:24 +00:00 committed by Diego Novillo
parent 1d44058799
commit 63185fabba
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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 ();