PR middle-end/17827
* c-semantics.c (expand_unreachable_if_stmt): Invoke
expand_cond on the condition.
From-SVN: r91806
+2004-12-07 Eric Botcazou <ebotcazou@libertysurf.fr>
+
+ PR middle-end/17827
+ * c-semantics.c (expand_unreachable_if_stmt): Invoke
+ expand_cond on the condition.
+
2004-12-06 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/sysv4.h: Define RELOCATABLE_NEEDS_FIXUP to 1.
return true;
}
+ /* Account for declarations as conditions. */
+ expand_cond (IF_COND (t));
+
if (THEN_CLAUSE (t) && ELSE_CLAUSE (t))
{
n = expand_unreachable_stmt (THEN_CLAUSE (t), 0);
+2004-12-07 Volker Reichelt <reichelt@gcc.gnu.org>
+
+ * g++.dg/other/unreachable-1.C: New test.
+
2004-12-04 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/17011, c++/17971