]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/testsuite/gcc.dg/compat/scalar-return-4_x.c
filter2_x.C: Declare abort.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / compat / scalar-return-4_x.c
index c3b31f8c9bfd82c4bbda00a233ba1b76d01db252..50305be4d351acd6520693efe6eb7cd5080ceca0 100644 (file)
@@ -36,9 +36,13 @@ testit##NAME (void)                                          \
   DEBUG_NL;                                                    \
 }
 
-T(cc, _Complex char, (0,1))
-T(cs, _Complex short, (1,2))
-T(cf, _Complex float, (1.0,2.0))
+#ifndef SKIP_COMPLEX
+#ifndef SKIP_COMPLEX_INT
+T(cc, _Complex char, CINT (0, 1))
+T(cs, _Complex short, CINT (1 + 2))
+#endif
+T(cf, _Complex float, CDBL (1.0, 2.0))
+#endif
 
 #undef T
 
@@ -49,9 +53,13 @@ DEBUG_INIT
 
 #define T(NAME) testit##NAME ();
 
+#ifndef SKIP_COMPLEX
+#ifndef SKIP_COMPLEX_INT
 T(cc)
 T(cs)
+#endif
 T(cf)
+#endif
 
 DEBUG_FINI