diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1994-09-28 22:33:33 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1994-09-28 22:33:33 +0000 |
commit | cfb8776eb59c9e0581f416629ed838b6c88abddf (patch) | |
tree | afd631008b644a86ac6bfc37f7a3064f00e69a30 | |
parent | ce9429943b31a57fde286a7e05b52edba0f1605a (diff) | |
download | gcc-cfb8776eb59c9e0581f416629ed838b6c88abddf.zip gcc-cfb8776eb59c9e0581f416629ed838b6c88abddf.tar.gz gcc-cfb8776eb59c9e0581f416629ed838b6c88abddf.tar.bz2 |
Do not emit \v, gas does not like it.
From-SVN: r8156
-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 970a1ad..663ff4b 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\ |