Commit 3f341ee7 by Richard Biener Committed by Richard Biener

genmatch.c (dt_node::gen_kids): Fix placement of break statement.

2014-11-13  Richard Biener  <rguenther@suse.de>

	* genmatch.c (dt_node::gen_kids): Fix placement of break statement.

From-SVN: r217487
parent 1f6be682
2014-11-13 Richard Biener <rguenther@suse.de>
* genmatch.c (dt_node::gen_kids): Fix placement of break statement.
2014-11-13 Ilya Verbin <ilya.verbin@intel.com> 2014-11-13 Ilya Verbin <ilya.verbin@intel.com>
Bernd Schmidt <bernds@codesourcery.com> Bernd Schmidt <bernds@codesourcery.com>
Andrey Turetskiy <andrey.turetskiy@intel.com> Andrey Turetskiy <andrey.turetskiy@intel.com>
...@@ -2124,8 +2124,8 @@ dt_node::gen_kids (FILE *f, bool gimple) ...@@ -2124,8 +2124,8 @@ dt_node::gen_kids (FILE *f, bool gimple)
"}\n"); "}\n");
} }
fprintf (f, "break;\n" fprintf (f, "}\n"
"}\n"); "break;\n");
} }
for (unsigned i = 0; i < generic_exprs.length (); ++i) for (unsigned i = 0; i < generic_exprs.length (); ++i)
......
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