Index: genmatch.c =================================================================== --- genmatch.c (revision 217303) +++ genmatch.c (working copy) @@ -549,11 +549,7 @@ simplify (operand *match_, source_location match_location_, struct operand *result_, source_location result_location_, vec ifexpr_vec_, vec > for_vec_, - cid_map_t *capture_ids_) - : match (match_), match_location (match_location_), - result (result_), result_location (result_location_), - ifexpr_vec (ifexpr_vec_), for_vec (for_vec_), - capture_ids (capture_ids_), capture_max (capture_ids_->elements () - 1) {} + cid_map_t *capture_ids_); /* The expression that is matched against the GENERIC or GIMPLE IL. */ operand *match; @@ -574,6 +570,20 @@ int capture_max; }; +simplify::simplify (operand *match_, source_location match_location_, + operand *result_, source_location result_location_, + vec ifexpr_vec_, vec< vec > for_vec_, + cid_map_t *capture_ids_) +{ + match = match_; + match_location = match_location_; + result = result_; + result_location = result_location_; + ifexpr_vec = ifexpr_vec_; + for_vec = for_vec_; + capture_ids = capture_ids_; +} + /* Debugging routines for dumping the AST. */ DEBUG_FUNCTION void