public inbox for jit@gcc.gnu.org
 help / color / mirror / Atom feed
* [RFA jit] initialize input_location
@ 2014-01-01  0:00 Tom Tromey
  2014-01-01  0:00 ` David Malcolm
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Tromey @ 2014-01-01  0:00 UTC (permalink / raw)
  To: jit; +Cc: gcc-patches, Tom Tromey

This patch initializes input_location at the same spot where the line
table is initialized.  Without this, it's possible to crash when
emitting a diagnostic in a reinvocation of the compiler, because
input_location refers to a location that is no longer valid.
---
 gcc/ChangeLog.jit | 4 ++++
 gcc/toplev.c      | 1 +
 2 files changed, 5 insertions(+)

diff --git a/gcc/ChangeLog.jit b/gcc/ChangeLog.jit
index ee1df88..a9b0817 100644
--- a/gcc/ChangeLog.jit
+++ b/gcc/ChangeLog.jit
@@ -1,5 +1,9 @@
 2014-03-19  Tom Tromey  <tromey@redhat.com>
 
+	* toplev.c (general_init): Initialize input_location.
+
+2014-03-19  Tom Tromey  <tromey@redhat.com>
+
 	* timevar.h (auto_timevar): New class.
 
 2014-03-19  Tom Tromey  <tromey@redhat.com>
diff --git a/gcc/toplev.c b/gcc/toplev.c
index b257ab2..1febc2e 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1161,6 +1161,7 @@ general_init (const char *argv0)
      table.  */
   init_ggc ();
   init_stringpool ();
+  input_location = 0;
   line_table = ggc_alloc_line_maps ();
   linemap_init (line_table);
   line_table->reallocator = realloc_for_line_map;
-- 
1.8.5.3

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-03-24 18:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-01  0:00 [RFA jit] initialize input_location Tom Tromey
2014-01-01  0:00 ` David Malcolm
2014-01-01  0:00   ` Tom Tromey
2014-01-01  0:00     ` David Malcolm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).