diff options
author | brobecke <brobecke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-16 18:32:36 +0000 |
---|---|---|
committer | brobecke <brobecke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-16 18:32:36 +0000 |
commit | 21f8688e4233d9ff79501bec8d29c4052dda6363 (patch) | |
tree | 4e7a96b87d4155111e99ed6f9efa4892deb7ea17 | |
parent | f0b55f07a6790d1335bb41acbc006feb3ea1d5f4 (diff) | |
download | gcc-21f8688e4233d9ff79501bec8d29c4052dda6363.tar.gz |
* dwarf2asm.c (dw2_asm_output_nstring): Add comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71442 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/dwarf2asm.c | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 679fcfd8a2b..6003a630492 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-09-16 Joel Brobecker <brobecker@gnat.com> + + * dwarf2asm.c (dw2_asm_output_nstring): Add comment. + 2003-09-16 Roger Sayle <roger@eyesopen.com> PR bootstrap/12269 diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c index 84b878f8d9e..5b5056cc9eb 100644 --- a/gcc/dwarf2asm.c +++ b/gcc/dwarf2asm.c @@ -224,6 +224,13 @@ dw2_asm_output_addr_rtx (int size, rtx addr, va_end (ap); } +/* Output the first ORIG_LEN characters of STR as a string. + If ORIG_LEN is equal to -1, ignore this parameter and output + the entire STR instead. + If COMMENT is not NULL and comments in the debug information + have been requested by the user, append the given COMMENT + to the generated output. */ + void dw2_asm_output_nstring (const char *str, size_t orig_len, const char *comment, ...) |