diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-22 19:17:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-09-22 19:17:18 +0000 |
commit | 555aee6ae647a0d187ed0ee66db40d61b0ed514b (patch) | |
tree | 682f1238cdbbee8d2e05d9a02f56762a3b305188 /gas/config/tc-bfin.c | |
parent | f8abba2d52f6e2b4b681c4c8a429de348075cbf3 (diff) | |
download | binutils-redhat-555aee6ae647a0d187ed0ee66db40d61b0ed514b.tar.gz |
gas: blackfin: allow end-of-line comments via #
We don't use the # character in the Blackfin assembly language, so let it
start end-of-line comments like most other assemblers.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'gas/config/tc-bfin.c')
-rw-r--r-- | gas/config/tc-bfin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-bfin.c b/gas/config/tc-bfin.c index 19eae86827..814250ef53 100644 --- a/gas/config/tc-bfin.c +++ b/gas/config/tc-bfin.c @@ -1,5 +1,5 @@ /* tc-bfin.c -- Assembler for the ADI Blackfin. - Copyright 2005, 2006, 2007, 2008, 2009 + Copyright 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -136,7 +136,7 @@ const pseudo_typeS md_pseudo_table[] = { }; /* Characters that are used to denote comments and line separators. */ -const char comment_chars[] = ""; +const char comment_chars[] = "#"; const char line_comment_chars[] = "#"; const char line_separator_chars[] = ";"; |