summaryrefslogtreecommitdiff
path: root/sim/ppc/sim_calls.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-04-16 18:16:33 +0000
committerMike Frysinger <vapier@gentoo.org>2011-04-16 18:16:33 +0000
commit83a52a17fac115837a184696afa6fbf5e4c12993 (patch)
treed407c50ba004ec7b35843cf369847c81bd5d2389 /sim/ppc/sim_calls.c
parent16d2f8d0b7312e904783e0bb0af032afee2d64f7 (diff)
downloadgdb-83a52a17fac115837a184696afa6fbf5e4c12993.tar.gz
sim: add sim_complete_command stubs for non-common-using ports
For the ports that don't use the common/ subdir, we need to add stub funcs to them to avoid build failures with gdb and command completion. These do not implement the actual completion functionality ... any port that wants that can either convert to the common/ subdir, or fill out the function on their own time. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/ppc/sim_calls.c')
-rw-r--r--sim/ppc/sim_calls.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sim/ppc/sim_calls.c b/sim/ppc/sim_calls.c
index 93365165c1c..e80db88b0d9 100644
--- a/sim/ppc/sim_calls.c
+++ b/sim/ppc/sim_calls.c
@@ -259,6 +259,11 @@ sim_do_command (SIM_DESC sd, char *cmd)
}
}
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+ return NULL;
+}
/* Polling, if required */