Commit 404e6b79 by Jeffrey A Law Committed by Jeff Law

* gcc.dg/20000420-1.c: New test.

From-SVN: r33286
parent 6e84eab8
Thu Apr 20 11:57:03 2000 Jeffrey A Law (law@cygnus.com)
* gcc.dg/20000420-1.c: New test.
2000-04-20 Nathan Sidwell <nathan@codesourcery.com>
* g++.abi/ptrflags.C: New test.
......
struct z_candidate { struct z_candidate *next;int viable;};
int pedantic;
static struct z_candidate *
splice_viable (cands)
struct z_candidate *cands;
{
struct z_candidate **p = &cands;
for (; *p; )
{
if (pedantic ? (*p)->viable == 1 : (*p)->viable)
p = &((*p)->next);
else
*p = (*p)->next;
}
return cands;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment