struct-align-2_x.c: Include <limits.h>.
authorJakub Jelinek <jakub@redhat.com>
Fri, 18 Jun 2004 23:20:34 +0000 (01:20 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 18 Jun 2004 23:20:34 +0000 (01:20 +0200)
* gcc.dg/compat/struct-align-2_x.c: Include <limits.h>.
Use INT_MAX instead of __INT_MAX__.
* gcc.dg/compat/struct-align-2_y.c: Likewise.

From-SVN: r83371

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/compat/struct-align-2_x.c
gcc/testsuite/gcc.dg/compat/struct-align-2_y.c

index c948f43c2cb4c8fb884e7cef5e9856357694f3dc..c29b49fa94a1e0849093e005479b2da30a7d9901 100644 (file)
@@ -1,5 +1,9 @@
 2004-06-19  Jakub Jelinek  <jakub@redhat.com>
 
+       * gcc.dg/compat/struct-align-2_x.c: Include <limits.h>.
+       Use INT_MAX instead of __INT_MAX__.
+       * gcc.dg/compat/struct-align-2_y.c: Likewise.
+
        * gcc.dg/compat/compat-common.h (CINT, CDBL): Define.
        * gcc.dg/compat/scalar-return-3_x.c: Use it.
        * gcc.dg/compat/scalar-return-3_y.c: Use it.
@@ -10,8 +14,6 @@
        * gcc.dg/compat/scalar-by-value-4_x.c: Use it.
        * gcc.dg/compat/scalar-by-value-4_y.c: Use it.
 
-2004-06-19  Jakub Jelinek  <jakub@redhat.com>
-
        * gcc.dg/range-test-1.c: New test.
        * g++.dg/opt/range-test-1.C: New test.
 
index 47f32d443ec6b52fa0e82e42e735ae48971ac94a..2a4ae586b76f7428e71023d0f548a978d1d134cc 100644 (file)
@@ -1,6 +1,8 @@
 /* Disable this test for 16-bit targets.  */
 
-#if !(defined __GNUC__) || (__INT_MAX__ > 32767)
+#include <limits.h>
+
+#if !(defined __GNUC__) || (INT_MAX > 32767)
 
 #include "compat-common.h"
 #include "struct-align-2.h"
@@ -80,4 +82,4 @@ struct_align_2_x (void)
 
 void struct_align_2_x (void) {}
 
-#endif  /* __INT_MAX__ */
+#endif  /* INT_MAX */
index 15b684f453cc4711cb4700a2d2c5357840068634..0ca2e40c4c1e092b43e82c333b9c02a32c60b558 100644 (file)
@@ -1,6 +1,8 @@
 /* Disable this test for 16-bit targets.  */
 
-#if !(defined __GNUC__) || (__INT_MAX__ > 32767)
+#include <limits.h>
+
+#if !(defined __GNUC__) || (INT_MAX > 32767)
 
 #include "compat-common.h"
 #include "struct-align-2.h"
@@ -68,4 +70,4 @@ TEST (pdata8)
 
 int i;  /* prevent compiling an empty file */
 
-#endif  /* __INT_MAX__ */
+#endif  /* INT_MAX */