Backport from mainline:
2004-03-22 Diego Novillo <dnovillo@redhat.com>
* c-typeck.c (same_translation_unit_p): Fix pasto.
* gcc.c-torture/compile/
20050105-1.c: New test.
From-SVN: r92977
+2005-01-06 Jakub Jelinek <jakub@redhat.com>
+
+ Backport from mainline:
+ 2004-03-22 Diego Novillo <dnovillo@redhat.com>
+
+ * c-typeck.c (same_translation_unit_p): Fix pasto.
+
2005-01-02 Roger Sayle <roger@eyesopen.com>
Andrew Pinski <pinskia@physics.uc.edu>
James E. Wilson <wilson@specifixinc.com>
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 ();
+2005-01-06 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.c-torture/compile/20050105-1.c: New test.
+
2005-01-02 Andreas Jaeger <aj@suse.de>
* gcc.dg/pr12092-1.c: Do not run on x86_64.