diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2003-10-29 20:17:50 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2003-10-29 20:17:50 +0000 |
commit | e08fde98b7cbfb5307bb552e39bd50b472af871c (patch) | |
tree | 9b78784e852dccc47584357db4a93c58ab40275e | |
parent | 7d213ecc726bf33d646e2dbd6c14807e0ad7b4df (diff) | |
download | gcc-e08fde98b7cbfb5307bb552e39bd50b472af871c.zip gcc-e08fde98b7cbfb5307bb552e39bd50b472af871c.tar.gz gcc-e08fde98b7cbfb5307bb552e39bd50b472af871c.tar.bz2 |
* pa.h (ASM_COMMENT_START): Define.
From-SVN: r73059
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/pa.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d12861f..cfc062a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-10-29 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + * pa.h (ASM_COMMENT_START): Define. + 2003-10-29 Zack Weinberg <zack@codesourcery.com> * genmodes.c (complete_mode): Record MODE_CC, MODE_INT, diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index ce69b3b..800c5df 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -1673,6 +1673,12 @@ do { \ /* Control the assembler format that we output. */ +/* A C string constant describing how to begin a comment in the target + assembler language. The compiler assumes that the comment will end at + the end of the line. */ + +#define ASM_COMMENT_START ";" + /* Output to assembler file text saying following lines may contain character constants, extra white space, comments, etc. */ |