diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-15 18:36:10 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-15 18:36:10 +0000 |
commit | bcdb555cd759a0a9670f385e1dcefeca4f1a1812 (patch) | |
tree | e89d039fcda847debfabc35e4a6e1f2cb81b9732 /gcc/xcoffout.h | |
parent | 23720eba56f66cf1a62af6a9b49dded63ff9e49d (diff) | |
download | gcc-bcdb555cd759a0a9670f385e1dcefeca4f1a1812.tar.gz |
2008-10-15 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r141146
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@141150 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/xcoffout.h')
-rw-r--r-- | gcc/xcoffout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/xcoffout.h b/gcc/xcoffout.h index be6d2a2e1d2..2143192c38f 100644 --- a/gcc/xcoffout.h +++ b/gcc/xcoffout.h @@ -84,7 +84,7 @@ along with GCC; see the file COPYING3. If not see fputs (_p+1, asm_out_file); \ else \ for (; *_p != '[' && *_p; _p++) \ - putc (*_p, asm_out_file); \ + putc (*_p != '$' ? *_p : '_', asm_out_file); \ } \ else \ output_addr_const (asm_out_file, ADDR); \ |