Commit 30f641cd by Richard Sandiford Committed by Richard Sandiford

vec.h (vec_prefix, vec): Prefix member names with "m_".

gcc/
	* vec.h (vec_prefix, vec): Prefix member names with "m_".
	* vec.c (vec_prefix::calculate_allocation): Update accordingly.

From-SVN: r203047
parent 65d3284b
2013-09-30 Richard Sandiford <rdsandiford@googlemail.com>
* vec.h (vec_prefix, vec): Prefix member names with "m_".
* vec.c (vec_prefix::calculate_allocation): Update accordingly.
2013-09-30 Richard Sandiford <rdsandiford@googlemail.com>
* basic-block.h (edge_list): Prefix member names with "m_".
* context.h (context): Likewise.
* domwalk.h (dom_walker): Likewise.
......
......@@ -183,8 +183,8 @@ vec_prefix::calculate_allocation (vec_prefix *pfx, unsigned reserve,
if (pfx)
{
alloc = pfx->alloc_;
num = pfx->num_;
alloc = pfx->m_alloc;
num = pfx->m_num;
}
else if (!reserve)
/* If there's no vector, and we've not requested anything, then we
......
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