Commit cd9bedad by Zack Weinberg Committed by Zack Weinberg

* gcc.c-torture/compile/20000701-1.c: New test.

From-SVN: r34836
parent baae9b65
2000-07-02 Zack Weinberg <zack@wolery.cumb.org
* gcc.c-torture/compile/20000701-1.c: New test.
2000-06-30 Nick Clifton <nickc@cygnus.com>
* gcc.c-torture/compile/20000629-1.c: Add second, reversed, loop
......
void
dr106_1(void *pv, int i)
{
*pv;
i ? *pv : *pv;
*pv, *pv;
}
void
dr106_2(const void *pcv, volatile void *pvv, int i)
{
*pcv;
i ? *pcv : *pcv;
*pcv, *pcv;
*pvv;
i ? *pvv : *pvv;
*pvv, *pvv;
}
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