aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-09-26 11:40:53 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-09-26 11:40:53 +0000
commitf0305a2b791f1cd4c563e48618e765f236180282 (patch)
tree69ec948ba29623647bab924a85fa4110caa56260 /gcc/combine.c
parent4e32193ac9faee5688303f6ff2be523b3e8fc230 (diff)
downloadgcc-f0305a2b791f1cd4c563e48618e765f236180282.zip
gcc-f0305a2b791f1cd4c563e48618e765f236180282.tar.gz
gcc-f0305a2b791f1cd4c563e48618e765f236180282.tar.bz2
combine.c (gen_rtx_combine): Add missing call to va_end().
* combine.c (gen_rtx_combine): Add missing call to va_end(). * final.c (asm_fprintf): Likewise. * genattrtab.c (attr_rtx): Likewise. cp: * lex.c (compiler_error): Add missing call to va_end(). From-SVN: r29667
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 61d55d0..813f8fa 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -9402,6 +9402,8 @@ gen_rtx_combine VPROTO((enum rtx_code code, enum machine_mode mode, ...))
args[j] = va_arg (p, rtx);
}
+ va_end (p);
+
/* See if this is in undobuf. Be sure we don't use objects that came
from another insn; this could produce circular rtl structures. */