Browse code

configure, configure.in: add comment on origin of testcases.

git-svn: trunk@3237

Török Edvin authored on 2007/09/22 01:26:26
Showing 3 changed files
... ...
@@ -1,3 +1,7 @@
1
+Fri Sep 21 18:40:56 EEST 2007 (edwin)
2
+-------------------------------------
3
+  * configure, configure.in: add comment on origin of testcases.
4
+
1 5
 Fri Sep 21 00:33:37 CEST 2007 (acab)
2 6
 ------------------------------------
3 7
   * libclamav/pe.c: Avoid variadic macroes make vc6 happy. Big thx to
... ...
@@ -20018,6 +20018,7 @@ cat confdefs.h >>conftest.$ac_ext
20018 20018
 cat >>conftest.$ac_ext <<_ACEOF
20019 20019
 /* end confdefs.h.  */
20020 20020
 
20021
+/* (C) Richard Guenther */
20021 20022
 void exit (int);
20022 20023
 void abort (void);
20023 20024
 int a;
... ...
@@ -20087,6 +20088,7 @@ cat confdefs.h >>conftest.$ac_ext
20087 20087
 cat >>conftest.$ac_ext <<_ACEOF
20088 20088
 /* end confdefs.h.  */
20089 20089
 
20090
+/* (C) Andrew Pinski */
20090 20091
 extern void abort(void);
20091 20092
 struct a
20092 20093
 {
... ...
@@ -20161,6 +20163,7 @@ cat confdefs.h >>conftest.$ac_ext
20161 20161
 cat >>conftest.$ac_ext <<_ACEOF
20162 20162
 /* end confdefs.h.  */
20163 20163
 
20164
+/* (C) Richard Guenther */
20164 20165
 extern void abort(void);
20165 20166
 
20166 20167
 int try (char *a, int d)
... ...
@@ -69,9 +69,11 @@ dnl we do these checks here to avoid receiving endless bugreports about
69 69
 dnl breakages due to compiler bugs.
70 70
 
71 71
 dnl Check if compiler produces invalid code on gcc PR27603 (affects upx.c)
72
+dnl testcase from gcc testsuite
72 73
 AC_MSG_CHECKING([for gcc bug PR27603])
73 74
 AC_TRY_RUN(
74 75
 	   [
76
+/* (C) Richard Guenther */	   
75 77
 void exit (int);
76 78
 void abort (void);
77 79
 int a;
... ...
@@ -90,9 +92,11 @@ int main()
90 90
 [AC_MSG_ERROR([your compiler has gcc PR27603 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27603])])
91 91
 
92 92
 dnl Check if compiler produces invalid code on gcc PR28045 (affects upx.c)
93
+dnl testcase from gcc testsuite
93 94
 AC_MSG_CHECKING([for gcc bug PR28045])
94 95
 AC_TRY_RUN(
95 96
 	   [
97
+/* (C) Andrew Pinski */	   
96 98
 extern void abort(void);
97 99
 struct a
98 100
 {
... ...
@@ -116,9 +120,11 @@ int main ()
116 116
 [AC_MSG_ERROR([your compiler has gcc PR28045 bug, use a different compiler, see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28045])])
117 117
 
118 118
 dnl Check if compiler produces invalid code on gcc PR26763-2 (affects upx.c)
119
+dnl testcase from gcc testsuite
119 120
 AC_MSG_CHECKING([for gcc bug PR26763-2])
120 121
 AC_TRY_RUN(
121 122
 	   [
123
+/* (C) Richard Guenther */	   
122 124
 extern void abort(void);
123 125
 
124 126
 int try (char *a, int d)