From 73e1c03f93f0294b464dc2b67de1f9aaae84838d Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 30 May 2018 14:54:45 -0400 Subject: Remove regcache_raw_supply Remove regcache_raw_supply, update callers to use detached_regcache::raw_supply. gdb/ChangeLog: * regcache.h (regcache_raw_supply): Remove, update callers to use detached_regcache::raw_supply. * regcache.c (regcache_raw_supply): Remove. --- gdb/tilegx-linux-nat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/tilegx-linux-nat.c') diff --git a/gdb/tilegx-linux-nat.c b/gdb/tilegx-linux-nat.c index 9b596c0..1ff6485 100644 --- a/gdb/tilegx-linux-nat.c +++ b/gdb/tilegx-linux-nat.c @@ -88,7 +88,7 @@ supply_gregset (struct regcache* regcache, for (i = 0; i < sizeof (regmap) / sizeof (regmap[0]); i++) if (regmap[i] >= 0) - regcache_raw_supply (regcache, i, regp + regmap[i]); + regcache->raw_supply (i, regp + regmap[i]); } /* Fill registers in *GREGSETPS with the values in GDB's -- cgit v1.1