2012-11-12 Tobias Burnus <burnus@net-b.de>
* diagnostic.c (diagnostic_append_note): Also call va_end when
inhibit_notes_p is true.
From-SVN: r193428
+2012-11-12 Tobias Burnus <burnus@net-b.de>
+
+ * diagnostic.c (diagnostic_append_note): Also call va_end when
+ inhibit_notes_p is true.
+
2012-11-12 Bin Cheng <bin.cheng@arm.com>
* gcse.c (struct bb_data): Add new fields, old_pressure, live_in
va_start (ap, gmsgid);
diagnostic_set_info (&diagnostic, gmsgid, &ap, location, DK_NOTE);
if (context->inhibit_notes_p)
- return;
+ {
+ va_end (ap);
+ return;
+ }
pp_set_prefix (context->printer,
diagnostic_build_prefix (context, &diagnostic));
pp_newline (context->printer);