Add `sim_complete_command' definition to erc32 sim
authorJoel Brobecker <brobecker@gnat.com>
Wed, 1 Jun 2011 17:35:02 +0000 (17:35 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Wed, 1 Jun 2011 17:35:02 +0000 (17:35 +0000)
This patch fixes a build failure at link time due to
sim_complete_command being undefined.  There was a recent change
that added this function to all the ports that do not use the
common/ subdir.  But somehow, the erc32 port got missed.

sim/erc32/ChangeLog:

        * interf.c (sim_complete_command): New stub function.

sim/erc32/ChangeLog
sim/erc32/interf.c

index cf128ba1d84b4402b8b037666808121bfb8f5b21..5317b9966f4a7ea0b3c5f8cb05ada3c7efd98214 100644 (file)
@@ -1,3 +1,7 @@
+2011-06-01  Joel Brobecker  <brobecker@adacore.com>
+
+       * interf.c (sim_complete_command): New stub function.
+
 2011-01-11  Andrew Burgess  <aburgess@broadcom.com>
 
        * interf.c (sim_store_register): Update return value to
index d81511a06d5da095fc3df9a85dc32aa4852fccf3..7ee4dee3951b780ffba390d835da6f7502090502 100644 (file)
@@ -481,6 +481,12 @@ sim_do_command(sd, cmd)
     exec_cmd(&sregs, cmd);
 }
 
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+  return NULL;
+}
+
 #if 0 /* FIXME: These shouldn't exist.  */
 
 int
This page took 0.024913 seconds and 4 git commands to generate.