Commit dbdd3489 by Roger Sayle Committed by Roger Sayle

921206-1.c: Rename undeclared function from "pow" to "foo" to avoid potential confusion...


	* gcc.c-torture/compile/921206-1.c: Rename undeclared function from
	"pow" to "foo" to avoid potential confusion with math built-ins.

From-SVN: r62469
parent 69bd9368
2003-02-05 Roger Sayle <roger@eyesopen.com>
* gcc.c-torture/compile/921206-1.c: Rename undeclared function from
"pow" to "foo" to avoid potential confusion with a math built-in.
2003-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.c-torture/execute/20020227-1.x: Update specific XFAIL
......
......@@ -24,5 +24,5 @@ f()
}
}
for (l = sm; l <= sx; l++)
smap[l] = l > 0 ? 1 + pow(sin(.1 * l / sx)) : 1 - pow(sin(.1 * l / sm));
smap[l] = l > 0 ? 1 + foo(sin(.1 * l / sx)) : 1 - foo(sin(.1 * l / sm));
}
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