repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
init
/
cleanup1.C
blob
517af15c673df4acda581c77c9a9f946a1b6886c
1
// PR c++/13033
2
3
// We failed to treat the for increment expression as a full-expression,
4
// which broke gimplification.
5
6
struct QDomNode {
7
virtual ~QDomNode();
8
QDomNode nextSibling() const;
9
bool isNull() const;
10
};
11
12
void processNode(QDomNode n)
13
{
14
for (; !n.isNull(); n = n.nextSibling())
15
;
16
}