aboutsummaryrefslogtreecommitdiff
path: root/gcc/stmt.c
diff options
context:
space:
mode:
authorGeoff Keating <geoffk@cygnus.com>2000-09-22 18:07:49 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2000-09-22 18:07:49 +0000
commitafa223c6a91f807cc4729e84c877f10bbed10481 (patch)
treea1e53d580e44e55c4728d59eadf576805e8d802c /gcc/stmt.c
parenta3a834aa73cc1f422c50b45955172805c5ab6fcc (diff)
downloadgcc-afa223c6a91f807cc4729e84c877f10bbed10481.zip
gcc-afa223c6a91f807cc4729e84c877f10bbed10481.tar.gz
gcc-afa223c6a91f807cc4729e84c877f10bbed10481.tar.bz2
In gcc/ChangeLog:
* stmt.c (expand_asm_operands): Allow # in constraints. In gcc/testsuite/ChangeLog: * gcc.c-torture/compile/20000922-1.c: New file. From-SVN: r36571
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r--gcc/stmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index 2892d34..f646825 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -1476,7 +1476,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
}
break;
- case '?': case '!': case '*': case '&':
+ case '?': case '!': case '*': case '&': case '#':
case 'E': case 'F': case 'G': case 'H':
case 's': case 'i': case 'n':
case 'I': case 'J': case 'K': case 'L': case 'M':
@@ -1658,7 +1658,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
break;
case '<': case '>':
- case '?': case '!': case '*':
+ case '?': case '!': case '*': case '#':
case 'E': case 'F': case 'G': case 'H':
case 's': case 'i': case 'n':
case 'I': case 'J': case 'K': case 'L': case 'M':