diff options
author | Joel Brobecker <brobecker@gnat.com> | 2003-09-16 18:32:36 +0000 |
---|---|---|
committer | Joel Brobecker <brobecke@gcc.gnu.org> | 2003-09-16 18:32:36 +0000 |
commit | 1e290ba1e60470f5d087eed303d25e77cc4fa6af (patch) | |
tree | 4e7a96b87d4155111e99ed6f9efa4892deb7ea17 /gcc/dwarf2asm.c | |
parent | a080d12ba1119c679e19475063e410d40eb3c8cc (diff) | |
download | gcc-1e290ba1e60470f5d087eed303d25e77cc4fa6af.tar.gz |
* dwarf2asm.c (dw2_asm_output_nstring): Add comment.
From-SVN: r71442
Diffstat (limited to 'gcc/dwarf2asm.c')
-rw-r--r-- | gcc/dwarf2asm.c | 7 |
1 files changed, 7 insertions, 0 deletions
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, ...) |