This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[fixinc patch] Correct 2/3 failing test cases


These are stupid little differences.  The difference in string.h
is a matter of spacing (and the new version corresponds to the source).
The difference in sys/regset.h involves a tab which (apparently) used
to get lost and doesn't get lost any more.

OK to commit, Bruce?

	* fixinc/tests/base/string.h, fixinc/tests/base/sys/regset.h:
	Fix to match produced versions.

Index: tests/base/string.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fixinc/tests/base/string.h,v
retrieving revision 1.1
diff -u -r1.1 string.h
--- tests/base/string.h	19 Apr 2003 21:10:08 -0000	1.1
+++ tests/base/string.h	26 Aug 2003 23:09:55 -0000
@@ -8,6 +8,6 @@
     original, manufacturer supplied header file.  */
 
 #ifndef _STRING_INCLUDED
-#define _STRING_INCLUDED
-#include <strings.h>
-#endif /* _STRING_INCLUDED */
+  #define _STRING_INCLUDED
+  #include <strings.h>
+#endif /* _STRING_INCLUDED */
\ No newline at end of file
Index: tests/base/sys/regset.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fixinc/tests/base/sys/regset.h,v
retrieving revision 1.1
diff -u -r1.1 regset.h
--- tests/base/sys/regset.h	19 Apr 2003 21:10:08 -0000	1.1
+++ tests/base/sys/regset.h	26 Aug 2003 23:09:56 -0000
@@ -11,7 +11,7 @@
 
 #if defined( SCO_REGSET_CHECK )
 union u_fps {
-    struct rsfpstate
+    struct	rsfpstate
     {
        int whatever;
     }

-- 
Nathanael Nerode  <neroden at gcc.gnu.org>
http://home.twcny.rr.com/nerode/neroden/fdl.html


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]