Hi,
I'm committing as obvious the below, to fix the breakage I inadvertently
cause. Sorry again.
Paolo.
///////////////////////////
2011-07-25 Paolo Carlini <paolo.carl...@oracle.com>
PR bootstrap/49845
* parser.c (cp_parser_perform_range_for_lookup): Always assign *being
and *end before returning.
Index: parser.c
===================================================================
--- parser.c (revision 176754)
+++ parser.c (working copy)
@@ -8796,7 +8796,10 @@ static tree
cp_parser_perform_range_for_lookup (tree range, tree *begin, tree *end)
{
if (error_operand_p (range))
- return error_mark_node;
+ {
+ *begin = *end = error_mark_node;
+ return error_mark_node;
+ }
if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (range))))
{