Commit a03e67c3 by Franz Sirl Committed by Franz Sirl

c-common.c (cb_register_builtins): Always define __GXX_ABI_VERSION.

	2002-08-01  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

	* c-common.c (cb_register_builtins): Always define __GXX_ABI_VERSION.

From-SVN: r55959
parent de273d3f
2002-08-01 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* c-common.c (cb_register_builtins): Always define __GXX_ABI_VERSION.
2002-08-01 Richard Henderson <rth@redhat.com>
* toplev.c (parse_options_and_default_flags): Don't set
......
......@@ -4732,9 +4732,12 @@ cb_register_builtins (pfile)
cpp_define (pfile, "__EXCEPTIONS");
if (warn_deprecated)
cpp_define (pfile, "__DEPRECATED");
cpp_define (pfile, "__GXX_ABI_VERSION=102");
}
/* represents the C++ ABI version, always defined so it can be used while
preprocessing C and assembler. */
cpp_define (pfile, "__GXX_ABI_VERSION=102");
/* libgcc needs to know this. */
if (USING_SJLJ_EXCEPTIONS)
cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment