aboutsummaryrefslogtreecommitdiff
path: root/include/gcc-c-interface.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2024-02-20 17:15:03 -0700
committerTom Tromey <tom@tromey.com>2024-02-29 15:34:38 -0700
commitf9771d0e80c3a98e865c7ee5139cadf9d73db436 (patch)
tree8aaa399ed59ae4bb3bd5bb4633403bf46093b1d7 /include/gcc-c-interface.h
parent4b067447e1b70dcf834ad65f03fd953178c30850 (diff)
downloadbinutils-f9771d0e80c3a98e865c7ee5139cadf9d73db436.zip
binutils-f9771d0e80c3a98e865c7ee5139cadf9d73db436.tar.gz
binutils-f9771d0e80c3a98e865c7ee5139cadf9d73db436.tar.bz2
Synchronize GCC compile plugin headers
This patch copies some changes to the compile headers from GCC's include/ directory. It is the gdb equivalent of the GCC commit bc0e18a9 -- however, while that commit also necessarily touched libcc1, this one of course does not. Tested by rebuilding and also running the gdb.compile tests. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31397
Diffstat (limited to 'include/gcc-c-interface.h')
-rw-r--r--include/gcc-c-interface.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/gcc-c-interface.h b/include/gcc-c-interface.h
index feece1e..700d748 100644
--- a/include/gcc-c-interface.h
+++ b/include/gcc-c-interface.h
@@ -45,7 +45,10 @@ enum gcc_c_api_version
/* Added char_type. Added new version of int_type and float_type,
deprecated int_type_v0 and float_type_v0. */
- GCC_C_FE_VERSION_1 = 1
+ GCC_C_FE_VERSION_1 = 1,
+
+ /* Added finish_record_with_alignment method. */
+ GCC_C_FE_VERSION_2 = 2,
};
/* Qualifiers. */
@@ -198,7 +201,11 @@ struct gcc_c_context
/* The type of the initialization function. The caller passes in the
desired base version and desired C-specific version. If the
request can be satisfied, a compatible gcc_context object will be
- returned. Otherwise, the function returns NULL. */
+ returned. In particular, this may return a context object with a higher
+ actual version number than was requested, provided the higher version is
+ fully compatible. (As of GCC_C_FE_VERSION_2, this is always true.)
+
+ Otherwise, the function returns NULL. */
typedef struct gcc_c_context *gcc_c_fe_context_function
(enum gcc_base_api_version,