diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-09-28 22:33:33 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-09-28 22:33:33 +0000 |
commit | 2ca87795ae77b263319fc2165fab25e1fb4f69b1 (patch) | |
tree | afd631008b644a86ac6bfc37f7a3064f00e69a30 /gcc | |
parent | b62bd5b5fac18f4602858c71918740dc2a4d28bb (diff) | |
download | gcc-2ca87795ae77b263319fc2165fab25e1fb4f69b1.tar.gz |
Do not emit \v, gas does not like it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8156 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/svr4.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/svr4.h b/gcc/config/svr4.h index 970a1ad1d83..663ff4bcbbb 100644 --- a/gcc/config/svr4.h +++ b/gcc/config/svr4.h @@ -719,10 +719,11 @@ do { \ in the table. Note that we can use standard UN*X escape sequences for many control characters, but we don't use \a to represent BEL because some svr4 assemblers (e.g. on - the i386) don't know about that. */ + the i386) don't know about that. Also, we don't use \v + since some versions of gas, such as 2.2 did not accept it. */ #define ESCAPES \ -"\1\1\1\1\1\1\1\1btnvfr\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\ +"\1\1\1\1\1\1\1\1btn\1fr\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\ \0\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\\0\0\0\ \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\ |