diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-27 23:27:05 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-27 23:27:05 +0000 |
commit | 5147341983f283d3c3b7c44c5cba0e606199b148 (patch) | |
tree | 6f03f1b44bdcd2f96651b5255c4c315c59247d21 /gcc/xcoffout.h | |
parent | b9d267cded99d26ad0d7353dda571fde008d18d6 (diff) | |
download | gcc-5147341983f283d3c3b7c44c5cba0e606199b148.tar.gz |
Merge from mainline rev 141397.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/transactional-memory@141398 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); \ |