Revert "sim: mn10300: drop unused sim-main.c"
authorMike Frysinger <vapier@gentoo.org>
Fri, 23 Dec 2022 05:20:52 +0000 (00:20 -0500)
committerMike Frysinger <vapier@gentoo.org>
Fri, 23 Dec 2022 05:22:53 +0000 (00:22 -0500)
This reverts commit 681a422b855e4b20086554b170dae051361f00c7.

I missed that this was included via common/sim-inline.c.  I thought
I had grepped the top of the tree, but I must have only done mn10300.

Add a comment to make it clear where/how this file is used.

sim/mn10300/sim-main.c [new file with mode: 0644]

diff --git a/sim/mn10300/sim-main.c b/sim/mn10300/sim-main.c
new file mode 100644 (file)
index 0000000..99a5c84
--- /dev/null
@@ -0,0 +1,9 @@
+/**
+ * This isn't normally compiled, but is pulled in via sim-inline.c when the
+ * SIM_MAIN_INLINE option is enabled by the user at compile time.
+ */
+
+#ifndef SIM_MAIN_C
+#define SIM_MAIN_C
+#include "op_utils.c"
+#endif