diff options
author | Jeff Law <law@gcc.gnu.org> | 1997-10-07 23:23:19 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-10-07 23:23:19 -0600 |
commit | 51cbea761be56017136003c9d81b0acf4aeba6aa (patch) | |
tree | 3185a49482eb802309e68e445c764e63a2a37555 /gcc/integrate.c | |
parent | 253a01b4a68c55fa013bf94d73c60211b2e436a7 (diff) | |
download | gcc-51cbea761be56017136003c9d81b0acf4aeba6aa.zip gcc-51cbea761be56017136003c9d81b0acf4aeba6aa.tar.gz gcc-51cbea761be56017136003c9d81b0acf4aeba6aa.tar.bz2 |
One more thinko.
From-SVN: r15875
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 71302c3..27aa4df 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -2038,8 +2038,8 @@ expand_inline_function (fndecl, parms, target, ignore, type, } /* Make sure we free the things we explicitly allocated with xmalloc. */ - if (label_map) - free (label_map); + if (real_label_map) + free (real_label_map); return target; } |