http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45471

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2010.09.30 23:02:19
     Ever Confirmed|0                           |1

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> 2010-09-30 
23:02:19 UTC ---
305      /* Make sure abi::__type_info_pseudo has the same alias set
306         as std::type_info.  */

Simple fix:
Index: c-pch.c
===================================================================
--- c-pch.c    (revision 164815)
+++ c-pch.c    (working copy)
@@ -47,6 +47,7 @@ static const struct c_pch_matching
   const char *flag_name;
 } pch_matching[] = {
   { &flag_exceptions, "-fexceptions" },
+  { &flag_strict_aliasing, "-fstrict-aliasing" },
 };

 enum {

Reply via email to