]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/testsuite/gcc.dg/builtins-45.c
Remove Cell Broadband Engine SPU targets
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / builtins-45.c
index 0fa801b330798371101f35d69d4c714df3a98012..871e802e191d707eab9027f192681416ce8aa14e 100644 (file)
@@ -13,34 +13,24 @@ int
 main ()
 {
   double nan = __builtin_nan ("");
-#ifndef __SPU__
-  /* The SPU single-precision floating point format does not support NANs.  */
   float nanf = __builtin_nanf ("");
-#endif
   long double nanl = __builtin_nanl ("");
 
   double pinf = __builtin_inf ();
-#ifndef __SPU__
-  /* The SPU single-precision floating point format does not support Inf.  */
   float pinff = __builtin_inff ();
-#endif
   long double pinfl = __builtin_infl ();
 
   if (__builtin_finite (pinf))
     link_error ();
-#ifndef __SPU__
   if (__builtin_finitef (pinff))
     link_error ();
-#endif
   if (__builtin_finitel (pinfl))
     link_error ();
 
   if (__builtin_finite (nan))
     link_error ();
-#ifndef __SPU__
   if (__builtin_finitef (nanf))
     link_error ();
-#endif
   if (__builtin_finitel (nanl))
     link_error ();