aboutsummaryrefslogtreecommitdiff
path: root/sim/m68hc11/sim-main.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-03-31 01:54:47 -0400
committerMike Frysinger <vapier@gentoo.org>2015-03-31 01:54:47 -0400
commit2b6ca06237301286016acc4b7bbf5338a27fd5fc (patch)
tree3979e83b738bc7d5d6133676fa3ad044ae6e62cc /sim/m68hc11/sim-main.h
parentf6862f27a73f08effd88d98c5efdb08abfcf4bb1 (diff)
downloadgdb-2b6ca06237301286016acc4b7bbf5338a27fd5fc.zip
gdb-2b6ca06237301286016acc4b7bbf5338a27fd5fc.tar.gz
gdb-2b6ca06237301286016acc4b7bbf5338a27fd5fc.tar.bz2
sim: m68hc11: fix gcc-5 build error w/restrict keyword
Diffstat (limited to 'sim/m68hc11/sim-main.h')
-rw-r--r--sim/m68hc11/sim-main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/m68hc11/sim-main.h b/sim/m68hc11/sim-main.h
index 5dfc1bf..3973159 100644
--- a/sim/m68hc11/sim-main.h
+++ b/sim/m68hc11/sim-main.h
@@ -551,7 +551,7 @@ extern int cpu_initialize (SIM_DESC sd, sim_cpu *cpu);
/* Returns the address of a 68HC12 indexed operand.
Pre and post modifications are handled on the source register. */
-extern uint16 cpu_get_indexed_operand_addr (sim_cpu* cpu, int restrict);
+extern uint16 cpu_get_indexed_operand_addr (sim_cpu *cpu, int restricted);
extern void cpu_return (sim_cpu *cpu);
extern void cpu_set_sp (sim_cpu *cpu, uint16 val);