From 268a53de823a6750d6256ee1fb1e7707b4b45740 Mon Sep 17 00:00:00 2001 From: Xavier ASUS Date: Fri, 18 Oct 2019 00:31:54 +0200 Subject: sdcc-3.9.0 fork implementing GNU assembler syntax This fork aims to provide better support for stm8-binutils --- support/cpp/config.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 support/cpp/config.h (limited to 'support/cpp/config.h') diff --git a/support/cpp/config.h b/support/cpp/config.h new file mode 100644 index 0000000..c6bbaa2 --- /dev/null +++ b/support/cpp/config.h @@ -0,0 +1,11 @@ +#include "auto-host.h" +/* Provide three core typedefs used by everything, if we are compiling + GCC. These used to be found in rtl.h and tree.h, but this is no + longer practical. Providing these here rather that system.h allows + the typedefs to be used everywhere within GCC. */ +struct rtx_def; +typedef struct rtx_def *rtx; +struct rtvec_def; +typedef struct rtvec_def *rtvec; +union tree_node; +typedef union tree_node *tree; -- cgit v1.2.3