OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [cleanup1.C] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
// PR c++/13033
// PR c++/13033
// We failed to treat the for increment expression as a full-expression,
// We failed to treat the for increment expression as a full-expression,
// which broke gimplification.
// which broke gimplification.
struct QDomNode {
struct QDomNode {
  virtual ~QDomNode();
  virtual ~QDomNode();
  QDomNode nextSibling() const;
  QDomNode nextSibling() const;
  bool isNull() const;
  bool isNull() const;
};
};
void processNode(QDomNode n)
void processNode(QDomNode n)
{
{
  for (; !n.isNull(); n = n.nextSibling())
  for (; !n.isNull(); n = n.nextSibling())
    ;
    ;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.