aboutsummaryrefslogtreecommitdiff
path: root/gcc/vec.c
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2013-09-30 20:38:59 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2013-09-30 20:38:59 +0000
commit30f641cdccd11267f13ae4959739d654c7fa5835 (patch)
treef69c70b4a61137d9fe39405cb9b07d6c156e2da2 /gcc/vec.c
parent65d3284bfe05bd65415f9caf9f535e8bb745bdd1 (diff)
downloadgcc-30f641cdccd11267f13ae4959739d654c7fa5835.zip
gcc-30f641cdccd11267f13ae4959739d654c7fa5835.tar.gz
gcc-30f641cdccd11267f13ae4959739d654c7fa5835.tar.bz2
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
Diffstat (limited to 'gcc/vec.c')
-rw-r--r--gcc/vec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/vec.c b/gcc/vec.c
index 979ecc8..1303d53 100644
--- a/gcc/vec.c
+++ b/gcc/vec.c
@@ -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