Commit 17a3480b by Eric Botcazou Committed by Eric Botcazou

re PR ada/46574 (ada bootstrap fails with --enable-build-with-cxx.)

	PR ada/46574
	* gcc-interface/utils2.c (compare_elmt_bitpos): Fix typos.

From-SVN: r167207
parent 8af4370b
2010-11-27 Eric Botcazou <ebotcazou@adacore.com>
PR ada/46574
* gcc-interface/utils2.c (compare_elmt_bitpos): Fix typos.
2010-11-27 Eric Botcazou <ebotcazou@adacore.com>
PR ada/40777
* gcc-interface/targtyps.c (get_target_double_scalar_alignment): Guard
use of TARGET_64BIT macro.
......
......@@ -1654,8 +1654,8 @@ build_call_raise_column (int msg, Node_Id gnat_node)
static int
compare_elmt_bitpos (const PTR rt1, const PTR rt2)
{
const constructor_elt * const elmt1 = (const constructor_elt const *) rt1;
const constructor_elt * const elmt2 = (const constructor_elt const *) rt2;
const constructor_elt * const elmt1 = (const constructor_elt * const) rt1;
const constructor_elt * const elmt2 = (const constructor_elt * const) rt2;
const_tree const field1 = elmt1->index;
const_tree const field2 = elmt2->index;
const int ret
......
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