From c1072906f1e55711e5f6010c209a472fda80cf97 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 22 Jul 2020 15:56:08 +0200 Subject: gdb/jit: remove jiter_objfile_data -> objfile back-link This is no longer needed, remove it. gdb/ChangeLog: 2020-07-22 Simon Marchi * jit.h (struct jiter_objfile_data) : Remove. * jit.c (get_jiter_objfile_data): Update. --- gdb/ChangeLog | 6 ++++++ gdb/jit.c | 2 +- gdb/jit.h | 7 ------- 3 files changed, 7 insertions(+), 8 deletions(-) (limited to 'gdb') diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 83f20ac..e742817 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2020-07-22 Simon Marchi + + * jit.h (struct jiter_objfile_data) : + Remove. + * jit.c (get_jiter_objfile_data): Update. + 2020-07-22 Tankut Baris Aktemur Simon Marchi diff --git a/gdb/jit.c b/gdb/jit.c index 0e1cb20..85b644d 100644 --- a/gdb/jit.c +++ b/gdb/jit.c @@ -254,7 +254,7 @@ static jiter_objfile_data * get_jiter_objfile_data (objfile *objf) { if (objf->jiter_data == nullptr) - objf->jiter_data.reset (new jiter_objfile_data (objf)); + objf->jiter_data.reset (new jiter_objfile_data ()); return objf->jiter_data.get (); } diff --git a/gdb/jit.h b/gdb/jit.h index b78c35d..739a8f3 100644 --- a/gdb/jit.h +++ b/gdb/jit.h @@ -72,15 +72,8 @@ struct jit_descriptor struct jiter_objfile_data { - jiter_objfile_data (struct objfile *objfile) - : objfile (objfile) - {} - ~jiter_objfile_data (); - /* Back-link to the objfile. */ - struct objfile *objfile; - /* Symbol for __jit_debug_register_code. */ minimal_symbol *register_code = nullptr; -- cgit v1.1