Commit ed672cd0 by Zack Weinberg

New test culled from gcc-bugs

From-SVN: r31740
parent 7d34aa4c
// Build don't link:
extern double *y;
extern double *x;
extern int nPoints;
void SetInitCond(void)
{
int i;
for(i = 2; i < nPoints; ++i)
y[i] = y[nPoints] .* (x[i]-x[1]) / (x[nPoints]-x[1]);
}
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