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> 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_". * basic-block.h (edge_list): Prefix member names with "m_".
* context.h (context): Likewise. * context.h (context): Likewise.
* domwalk.h (dom_walker): Likewise. * domwalk.h (dom_walker): Likewise.
......
...@@ -183,8 +183,8 @@ vec_prefix::calculate_allocation (vec_prefix *pfx, unsigned reserve, ...@@ -183,8 +183,8 @@ vec_prefix::calculate_allocation (vec_prefix *pfx, unsigned reserve,
if (pfx) if (pfx)
{ {
alloc = pfx->alloc_; alloc = pfx->m_alloc;
num = pfx->num_; num = pfx->m_num;
} }
else if (!reserve) else if (!reserve)
/* If there's no vector, and we've not requested anything, then we /* 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