This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/26447] [4.2 Regression] verify_flow_info failed, load PRE



------- Comment #6 from pinskia at gcc dot gnu dot org  2006-02-27 17:41 -------
This the best I can get but I never can get an ICE:
int f(int a, int *b, int *c, int *d)throw()
{
 // try {
  int e = *c;
  if (e!=0)
    *b = 1;
  return *c+*d;
 // } catch(...)
 /* {
    return 0;
  }*/
}
----
Compile at -O2 -fnon-call-exceptions.
We do get:
  #   VUSE <TMT.4_14(ab)>;
  D.2388_8 = *c_1;
  pretmp.21_3 = D.2388_8;

Which looks wrong but I cannot get the ICE.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-02-27 17:41:37
               date|                            |


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]