]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR bootstrap/39583 (Revision 145255 breaks bootstrap with obj-c++)
authorDominique d'Humieres <dominiq@lps.ens.fr>
Mon, 30 Mar 2009 12:59:27 +0000 (14:59 +0200)
committerJoseph Myers <jsm28@gcc.gnu.org>
Mon, 30 Mar 2009 12:59:27 +0000 (13:59 +0100)
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

gcc/objc/ChangeLog
gcc/objc/objc-act.c

index 4a9668fef77c82f5ccd088c6b5d35581d63de217..4e26aad210fe35ecb02cf3586fd6d4cbb4ee9c45 100644 (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
index df3a719ba9375b39833dc7dbdad727ec2752fabc..81d63b24dabe668b259232028779e28b94b6b9bc 100644 (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