diff options
author | Jeff Law <law@gcc.gnu.org> | 1994-02-10 13:58:23 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1994-02-10 13:58:23 -0700 |
commit | 5921f26b9d7346d719926e4bdae7aada7069a4b5 (patch) | |
tree | e706e4e9dfabcbc68ab91720d93838e3be25db69 | |
parent | f7714ced3dd133f3c5b0e40dff86eaaac05de751 (diff) | |
download | gcc-5921f26b9d7346d719926e4bdae7aada7069a4b5.zip gcc-5921f26b9d7346d719926e4bdae7aada7069a4b5.tar.gz gcc-5921f26b9d7346d719926e4bdae7aada7069a4b5.tar.bz2 |
* pa.h (IS_ASM_LOGICAL_LINE_SEPARATOR): Define.
From-SVN: r6525
-rw-r--r-- | gcc/config/pa/pa.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index b70cf15..b3ed1a3 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -1869,6 +1869,9 @@ readonly_data () \ #define ASM_OPEN_PAREN "(" #define ASM_CLOSE_PAREN ")" +/* All HP assemblers use "!" to separate logical lines. */ +#define IS_ASM_LOGICAL_LINE_SEPARATOR(C) ((C) == '!') + /* Define results of standard character escape sequences. */ #define TARGET_BELL 007 #define TARGET_BS 010 |