]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix backslash expression in here string
authorBruce Korb <bkorb@gnu.org>
Fri, 6 May 2005 16:33:18 +0000 (16:33 +0000)
committerBruce Korb <korbb@gcc.gnu.org>
Fri, 6 May 2005 16:33:18 +0000 (16:33 +0000)
[[Split portion of a mixed commit.]]

Co-Authored-By: Joseph Myers <joseph@codesourcery.com>
From-SVN: r99322.1

gcc/ChangeLog
gcc/fixinc/fixincl.x
gcc/fixinc/inclhack.def

index bd31d2851164967e5ab5aaff35d47cf643d64d38..db1ecc8f7322c489b60253f2d5ab4f130e21724c 100644 (file)
@@ -1,3 +1,9 @@
+2005-05-06  Bruce Korb  <bkorb@gnu.org>
+       Joseph S. Myers <joseph@codesourcery.com>
+
+       * fixinc/inclhack.def: Correct backslashes
+       * fixinc/fixincl.x: regen
+
 2005-05-02  Janis Johnson  <janis187@us.ibm.com>
 
        PR 19985
index 41b0a3ada3bc0349b3f6766cedb8d7cadb6d9e16..658e5a1af88de1c960889c7e1f30ac0a2cfd0ebe 100644 (file)
@@ -2,11 +2,11 @@
  * 
  * DO NOT EDIT THIS FILE   (fixincl.x)
  * 
- * It has been AutoGen-ed  Sunday November 21, 2004 at 04:37:50 PM MST
+ * It has been AutoGen-ed  Friday May  6, 2005 at 09:27:07 AM PDT
  * From the definitions    inclhack.def
  * and the template file   fixincl
  */
-/* DO NOT CVS-MERGE THIS FILE, EITHER Sun Nov 21 16:37:50 MST 2004
+/* DO NOT CVS-MERGE THIS FILE, EITHER Fri May  6 09:27:07 PDT 2005
  *
  * You must regenerate it.  Use the ./genfixes script.
  *
@@ -124,13 +124,13 @@ static const char* apzAab_Fd_Zero_Gnu_Types_HPatch[] = {
 #include_next <gnu/types.h>\n\n\
 #if defined(__FD_ZERO) && !defined(__GLIBC__)\n\
 #undef __FD_ZERO\n\
-# define __FD_ZERO(fdsetp) \\\\\n\
-  do { \\\\\n\
-    int __d0, __d1; \\\\\n\
-__asm__ __volatile__(\"cld ; rep ; stosl\" \\\\\n\
-        \t: \"=&c\" (__d0), \"=&D\" (__d1) \\\\\n\
-        \t: \"a\" (0), \"0\" (__FDSET_LONGS), \\\\\n\
-  \"1\" ((__fd_set *) (fdsetp)) :\"memory\"); \\\\\n\
+# define __FD_ZERO(fdsetp) \\\n\
+  do { \\\n\
+    int __d0, __d1; \\\n\
+        __asm__ __volatile__(\"cld ; rep ; stosl\" \\\n\
+        : \"=&c\" (__d0), \"=&D\" (__d1) \\\n\
+        : \"a\" (0), \"0\" (__FDSET_LONGS), \\\n\
+          \"1\" ((__fd_set *) (fdsetp)) :\"memory\"); \\\n\
   } while (0)\n\
 #endif\n\n\
 #define _TYPES_H_WRAPPER\n\
index 819aadd161edcd0ad523e9c777e21784347b74aa..cd85caed83619188c06589e7909358bfbd73e723 100644 (file)
@@ -82,13 +82,13 @@ fix = {
 
        #if defined(__FD_ZERO) && !defined(__GLIBC__)
        #undef __FD_ZERO
-       # define __FD_ZERO(fdsetp) \\
-         do { \\
-           int __d0, __d1; \\
-               __asm__ __volatile__("cld ; rep ; stosl" \\
-               : "=&c" (__d0), "=&D" (__d1) \\
-               : "a" (0), "0" (__FDSET_LONGS), \\
-                 "1" ((__fd_set *) (fdsetp)) :"memory"); \\
+       # define __FD_ZERO(fdsetp) \
+         do { \
+           int __d0, __d1; \
+               __asm__ __volatile__("cld ; rep ; stosl" \
+               : "=&c" (__d0), "=&D" (__d1) \
+               : "a" (0), "0" (__FDSET_LONGS), \
+                 "1" ((__fd_set *) (fdsetp)) :"memory"); \
          } while (0)
        #endif