This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[tuples] remove fixme in verify_types_in_gimple_assign
- From: Aldy Hernandez <aldyh at redhat dot com>
- To: dnovillo at google dot com, gcc-patches at gcc dot gnu dot org
- Date: Mon, 7 Jul 2008 07:59:59 -0400
- Subject: [tuples] remove fixme in verify_types_in_gimple_assign
Committed to branch.
* tree-cfg.c (verify_types_in_gimple_assign): Remove fixme.
Index: tree-cfg.c
===================================================================
--- tree-cfg.c (revision 137555)
+++ tree-cfg.c (working copy)
@@ -3418,10 +3418,10 @@ verify_types_in_gimple_assign (gimple st
case CONSTRUCTOR:
{
- /* FIXME tuples. Note that in mainline, this code disallows
- CONSTRUCTOR expressions for types other than vector types,
- but in this context we know that we are on the RHS of an
- assignment, so CONSTRUCTOR operands are OK. */
+ /* Note that pre-tuples, this code disallowed CONSTRUCTOR expressions
+ for types other than vector types, but in this context we know
+ that we are on the RHS of an assignment, so CONSTRUCTOR operands
+ are OK. */
/* FIXME: verify constructor arguments. */
return false;
}