summaryrefslogtreecommitdiff
path: root/include/gcc-interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gcc-interface.h')
-rw-r--r--include/gcc-interface.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/gcc-interface.h b/include/gcc-interface.h
index e3ffd18a75d..1dc3498e877 100644
--- a/include/gcc-interface.h
+++ b/include/gcc-interface.h
@@ -169,6 +169,20 @@ struct gcc_base_context
const struct gcc_base_vtable *ops;
};
+/* An array of types used for creating function types in multiple
+ languages. */
+
+struct gcc_type_array
+{
+ /* Number of elements. */
+
+ int n_elements;
+
+ /* The elements. */
+
+ gcc_type *elements;
+};
+
/* The name of the dummy wrapper function generated by gdb. */
#define GCC_FE_WRAPPER_FUNCTION "_gdb_expr"