Commit 77a08224 by Dominique d'Humieres Committed by Joseph Myers

re PR bootstrap/39583 (Revision 145255 breaks bootstrap with obj-c++)

2009-03-30  Dominique d'Humieres  <dominiq@lps.ens.fr>

	PR bootstrap/39583
	* objc-act.c (in_late_binary_op): Define for Objective-C++.

From-SVN: r145290
parent d7be99f1
2009-03-30 Dominique d'Humieres <dominiq@lps.ens.fr>
PR bootstrap/39583
* objc-act.c (in_late_binary_op): Define for Objective-C++.
2009-03-29 Joseph Myers <joseph@codesourcery.com> 2009-03-29 Joseph Myers <joseph@codesourcery.com>
PR c/456 PR c/456
......
...@@ -79,6 +79,11 @@ along with GCC; see the file COPYING3. If not see ...@@ -79,6 +79,11 @@ along with GCC; see the file COPYING3. If not see
static unsigned int should_call_super_dealloc = 0; static unsigned int should_call_super_dealloc = 0;
/* When building Objective-C++, we need in_late_binary_op. */
#ifdef OBJCPLUS
bool in_late_binary_op = false;
#endif /* OBJCPLUS */
/* When building Objective-C++, we are not linking against the C front-end /* When building Objective-C++, we are not linking against the C front-end
and so need to replicate the C tree-construction functions in some way. */ and so need to replicate the C tree-construction functions in some way. */
#ifdef OBJCPLUS #ifdef OBJCPLUS
......
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