Each target is currently built with a different set of include directories, this is what makes it possible to pull in a separate copy of tcg-ldst.inc.c depending on the target.
Replace with per-target ifdefs which are easier to understand. Signed-off-by: Michael S. Tsirkin <[email protected]> --- include/tcg-ldst.inc.c | 1 + 1 file changed, 1 insertion(+) create mode 100644 include/tcg-ldst.inc.c diff --git a/include/tcg-ldst.inc.c b/include/tcg-ldst.inc.c new file mode 100644 index 0000000..fa0f3bf --- /dev/null +++ b/include/tcg-ldst.inc.c @@ -0,0 +1 @@ +#include_next "../tcg/tcg-ldst.inc.c" -- MST
