diff options
author | Tom Tromey <tom@tromey.com> | 2022-04-17 19:47:22 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-04-20 09:28:17 -0600 |
commit | bcd6845e2b66adb58d36eb1d9b8fbf71900b517d (patch) | |
tree | 0a1a9529971507e4f7430eebb5938da0e00ec5cc /gdb/tracepoint.c | |
parent | e19b2d94653dd4a7523a9e9b62020a63dac39439 (diff) | |
download | binutils-bcd6845e2b66adb58d36eb1d9b8fbf71900b517d.zip binutils-bcd6845e2b66adb58d36eb1d9b8fbf71900b517d.tar.gz binutils-bcd6845e2b66adb58d36eb1d9b8fbf71900b517d.tar.bz2 |
Replace symbol_arch with symbol::arch
This turns symbol_arch into a method on symbol.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 5a4048f..18c3803 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -2506,7 +2506,7 @@ info_scope_command (const char *args_in, int from_tty) if (symname == NULL || *symname == '\0') continue; /* Probably botched, certainly useless. */ - gdbarch = symbol_arch (sym); + gdbarch = sym->arch (); gdb_printf ("Symbol %s is ", symname); |