From 76e5271b9c5a2c3111a80c38784b26895c0fedd4 Mon Sep 17 00:00:00 2001 From: Arnaud Charlet Date: Tue, 2 Aug 2011 15:24:06 +0200 Subject: [PATCH] Fix bootstrap with g++ From-SVN: r177148 --- gcc/ada/gcc-interface/misc.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gcc/ada/gcc-interface/misc.c b/gcc/ada/gcc-interface/misc.c index a03bb0fbf35..85317256c2c 100644 --- a/gcc/ada/gcc-interface/misc.c +++ b/gcc/ada/gcc-interface/misc.c @@ -637,6 +637,10 @@ must_pass_by_ref (tree gnu_type) && TREE_CODE (TYPE_SIZE (gnu_type)) != INTEGER_CST)); } +#ifdef __cplusplus +extern "C" { +#endif + /* This function is called by the front-end to enumerate all the supported modes for the machine, as well as some predefined C types. F is a function which is called back with the parameters as listed below, first a string, @@ -755,6 +759,11 @@ enumerate_modes (void (*f) (const char *, int, int, int, int, int, int)) } } +#ifdef __cplusplus +} +#endif + + /* Return the size of the FP mode with precision PREC. */ int -- 2.30.2