mirror of git://gcc.gnu.org/git/gcc.git
Fix backslash expression in here string
[[Split portion of a mixed commit.]] Co-Authored-By: Joseph Myers <joseph@codesourcery.com> From-SVN: r99322.2
This commit is contained in:
parent
1bc5f355d9
commit
7673b71ce9
|
@ -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-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
2005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
* system.h (fopen, fdopen, freopen): Define these to the unlocked
|
* system.h (fopen, fdopen, freopen): Define these to the unlocked
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
*
|
*
|
||||||
* DO NOT EDIT THIS FILE (fixincl.x)
|
* DO NOT EDIT THIS FILE (fixincl.x)
|
||||||
*
|
*
|
||||||
* It has been AutoGen-ed Monday March 21, 2005 at 05:22:01 PM CET
|
* It has been AutoGen-ed Friday May 6, 2005 at 09:31:52 AM PDT
|
||||||
* From the definitions inclhack.def
|
* From the definitions inclhack.def
|
||||||
* and the template file fixincl
|
* and the template file fixincl
|
||||||
*/
|
*/
|
||||||
/* DO NOT CVS-MERGE THIS FILE, EITHER Mon Mar 21 17:22:01 CET 2005
|
/* DO NOT CVS-MERGE THIS FILE, EITHER Fri May 6 09:31:52 PDT 2005
|
||||||
*
|
*
|
||||||
* You must regenerate it. Use the ./genfixes script.
|
* 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\
|
#include_next <gnu/types.h>\n\n\
|
||||||
#if defined(__FD_ZERO) && !defined(__GLIBC__)\n\
|
#if defined(__FD_ZERO) && !defined(__GLIBC__)\n\
|
||||||
#undef __FD_ZERO\n\
|
#undef __FD_ZERO\n\
|
||||||
# define __FD_ZERO(fdsetp) \\\\\n\
|
# define __FD_ZERO(fdsetp) \\\n\
|
||||||
do { \\\\\n\
|
do { \\\n\
|
||||||
int __d0, __d1; \\\\\n\
|
int __d0, __d1; \\\n\
|
||||||
__asm__ __volatile__(\"cld ; rep ; stosl\" \\\\\n\
|
__asm__ __volatile__(\"cld ; rep ; stosl\" \\\n\
|
||||||
\t: \"=&c\" (__d0), \"=&D\" (__d1) \\\\\n\
|
: \"=&c\" (__d0), \"=&D\" (__d1) \\\n\
|
||||||
\t: \"a\" (0), \"0\" (__FDSET_LONGS), \\\\\n\
|
: \"a\" (0), \"0\" (__FDSET_LONGS), \\\n\
|
||||||
\"1\" ((__fd_set *) (fdsetp)) :\"memory\"); \\\\\n\
|
\"1\" ((__fd_set *) (fdsetp)) :\"memory\"); \\\n\
|
||||||
} while (0)\n\
|
} while (0)\n\
|
||||||
#endif\n\n\
|
#endif\n\n\
|
||||||
#define _TYPES_H_WRAPPER\n\
|
#define _TYPES_H_WRAPPER\n\
|
||||||
|
|
|
@ -82,13 +82,13 @@ fix = {
|
||||||
|
|
||||||
#if defined(__FD_ZERO) && !defined(__GLIBC__)
|
#if defined(__FD_ZERO) && !defined(__GLIBC__)
|
||||||
#undef __FD_ZERO
|
#undef __FD_ZERO
|
||||||
# define __FD_ZERO(fdsetp) \\
|
# define __FD_ZERO(fdsetp) \
|
||||||
do { \\
|
do { \
|
||||||
int __d0, __d1; \\
|
int __d0, __d1; \
|
||||||
__asm__ __volatile__("cld ; rep ; stosl" \\
|
__asm__ __volatile__("cld ; rep ; stosl" \
|
||||||
: "=&c" (__d0), "=&D" (__d1) \\
|
: "=&c" (__d0), "=&D" (__d1) \
|
||||||
: "a" (0), "0" (__FDSET_LONGS), \\
|
: "a" (0), "0" (__FDSET_LONGS), \
|
||||||
"1" ((__fd_set *) (fdsetp)) :"memory"); \\
|
"1" ((__fd_set *) (fdsetp)) :"memory"); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue