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
This commit is contained in:
Dominique d'Humieres 2009-03-30 14:59:27 +02:00 committed by Joseph Myers
parent d7be99f1b0
commit 77a08224ee
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
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>
PR c/456

View file

@ -79,6 +79,11 @@ along with GCC; see the file COPYING3. If not see
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
and so need to replicate the C tree-construction functions in some way. */
#ifdef OBJCPLUS