diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2017-01-31 00:58:47 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2017-01-31 00:58:47 +0000 |
commit | 023721aab10f963e82eee27d732d2397c44af1de (patch) | |
tree | 28d62acca1daac8b19283f49afc7db58a33e47fb /include/gcc-interface.h | |
parent | fe31d6efd7ec33043ed6bb2e9e55253940861e12 (diff) | |
download | gcc-023721aab10f963e82eee27d732d2397c44af1de.zip gcc-023721aab10f963e82eee27d732d2397c44af1de.tar.gz gcc-023721aab10f963e82eee27d732d2397c44af1de.tar.bz2 |
libcc1 base API version bump
for include/ChangeLog
* gcc-interface.h (enum gcc_base_api_version): Add
GCC_FE_VERSION_1.
for libcc1/ChangeLog
* libcc1.cc (vtable): Update to GCC_FE_VERSION_1.
(gcc_c_fe_context): Accept also GCC_FE_VERSION_1.
From-SVN: r245047
Diffstat (limited to 'include/gcc-interface.h')
-rw-r--r-- | include/gcc-interface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/gcc-interface.h b/include/gcc-interface.h index d4c4ec6..4c712d3 100644 --- a/include/gcc-interface.h +++ b/include/gcc-interface.h @@ -44,7 +44,8 @@ struct gcc_base_context; enum gcc_base_api_version { - GCC_FE_VERSION_0 = 0 + GCC_FE_VERSION_0 = 0, + GCC_FE_VERSION_1 = 1, }; /* The operations defined by the GCC base API. This is the vtable for |