Commit be99edf8 by Volker Reichelt Committed by Volker Reichelt

decl.c (define_label): Use POP_TIMEVAR_AND_RETURN.

	* decl.c (define_label): Use POP_TIMEVAR_AND_RETURN.
	* name-lookup.c (pushdecl_class_level): Likewise.

From-SVN: r92485
parent a90f8ad5
2004-12-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* decl.c (define_label): Use POP_TIMEVAR_AND_RETURN.
* name-lookup.c (pushdecl_class_level): Likewise.
2004-12-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* name-lookup.c (pushtag): Add missing POP_TIMEVAR_AND_RETURN.
......
......@@ -2431,8 +2431,7 @@ define_label (location_t location, tree name)
check_previous_gotos (decl);
}
timevar_pop (TV_NAME_LOOKUP);
return decl;
POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
}
struct cp_switch
......
......@@ -2480,9 +2480,7 @@ pushdecl_class_level (tree x)
input_location = save_location;
}
}
timevar_pop (TV_NAME_LOOKUP);
return is_valid;
POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, is_valid);
}
/* Return the BINDING (if any) for NAME in SCOPE, which is a class
......
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