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/22321] [4.0/4.1 Regression] Wrong code with SSA dominator optimizations


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-06 13:31 -------
This also fails too:
volatile int x;

int main ()
{
  volatile int *vip;
  vip = &x;
  volatile int *cvip;
  cvip = vip;

  if (vip != cvip) return -1;
  return 0;
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mmitchel at gcc dot gnu dot
                   |                            |org, law at gcc dot gnu dot
                   |                            |org
   Target Milestone|4.0.2                       |4.0.1


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


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