* cfgexpand.c (avoid_complex_debug_insns): Fix C++ism.
cp/
* parser.c (cp_parser_late_return_type_opt): Likewise.
From-SVN: r198114
+2013-04-21 Eric Botcazou <ebotcazou@adacore.com>
+
+ * cfgexpand.c (avoid_complex_debug_insns): Fix C++ism.
+
2013-04-19 Matthias Klose <doko@ubuntu.com>
PR middle-end/56848
avoid_complex_debug_insns (rtx insn, rtx *exp_p, int depth)
{
rtx exp = *exp_p;
+ const char *format_ptr;
+ int i, j;
if (exp == NULL_RTX)
return;
return;
}
- const char *format_ptr = GET_RTX_FORMAT (GET_CODE (exp));
- int i, j;
+ format_ptr = GET_RTX_FORMAT (GET_CODE (exp));
for (i = 0; i < GET_RTX_LENGTH (GET_CODE (exp)); i++)
switch (*format_ptr++)
{
+2013-04-21 Eric Botcazou <ebotcazou@adacore.com>
+
+ * parser.c (cp_parser_late_return_type_opt): Fix C++ism.
+
2013-04-15 Jason Merrill <jason@redhat.com>
PR c++/56388
cp_parser_late_return_type_opt (cp_parser* parser, cp_cv_quals quals)
{
cp_token *token;
- tree type;
+ tree type, save_ccp, save_ccr;
/* Peek at the next token. */
token = cp_lexer_peek_token (parser->lexer);
/* Consume the ->. */
cp_lexer_consume_token (parser->lexer);
- tree save_ccp = current_class_ptr;
- tree save_ccr = current_class_ref;
+ save_ccp = current_class_ptr;
+ save_ccr = current_class_ref;
if (quals >= 0)
{
/* DR 1207: 'this' is in scope in the trailing return type. */