Commit c82bde8a by Joseph Myers Committed by Joseph Myers

* gcc.dg/builtins-8.c: Condition cbrt test on HAVE_C99_RUNTIME.

From-SVN: r140297
parent 13d7e8af
2008-09-11 Joseph Myers <joseph@codesourcery.com>
* gcc.dg/builtins-8.c: Condition cbrt test on HAVE_C99_RUNTIME.
2008-09-11 Paolo Bonzini <bonzini@gnu.org>
* gcc.dg/tree-ssa/vrp47.c: New.
......
......@@ -27,8 +27,10 @@ void test(double x)
if (pow(x,0.5) != sqrt(x))
abort ();
#ifdef HAVE_C99_RUNTIME
if (pow(x,1.0/3.0) != cbrt(x))
abort ();
#endif
}
int main()
......
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