diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-08-13 08:44:24 -0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-08-13 22:54:05 -0700 |
commit | 6f64fd48c500baf7792c7995d853a4383c5f2ba0 (patch) | |
tree | 4164c394db89c2de532d33f1ea281eea9c75054c /sim/m68hc11/dv-m68hc11tim.c | |
parent | 527aaa4a3143afedd8dd85aa70862328a9dbe627 (diff) | |
download | gdb-6f64fd48c500baf7792c7995d853a4383c5f2ba0.zip gdb-6f64fd48c500baf7792c7995d853a4383c5f2ba0.tar.gz gdb-6f64fd48c500baf7792c7995d853a4383c5f2ba0.tar.bz2 |
sim: m68hc11: standardize sim_cpu naming
We use "sim_cpu *cpu" in the sim code base, not "struct _sim_cpu" or
the name "proc", so clean up this sim to follow along.
Diffstat (limited to 'sim/m68hc11/dv-m68hc11tim.c')
-rw-r--r-- | sim/m68hc11/dv-m68hc11tim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/m68hc11/dv-m68hc11tim.c b/sim/m68hc11/dv-m68hc11tim.c index c4e6c9d..17553b1 100644 --- a/sim/m68hc11/dv-m68hc11tim.c +++ b/sim/m68hc11/dv-m68hc11tim.c @@ -521,7 +521,7 @@ m68hc11tim_print_timer (struct hw *me, const char *name, else { signed64 t; - sim_cpu* cpu; + sim_cpu *cpu; cpu = STATE_CPU (sd, 0); |