Update the simplified Chinese translation of the messages in the opcodes library.
[deliverable/binutils-gdb.git] / include / gcc-interface.h
index e3ffd18a75d78472554703b91362fb32184bff61..1dc3498e877b765e9e94862ce6bc14e407d81b99 100644 (file)
@@ -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"
This page took 0.023008 seconds and 4 git commands to generate.