diff options
author | James Van Artsdalen <jrv@gnu.org> | 1992-05-24 18:57:01 +0000 |
---|---|---|
committer | James Van Artsdalen <jrv@gnu.org> | 1992-05-24 18:57:01 +0000 |
commit | c1c35f175d810f2a5869e81b50e1521545d345c2 (patch) | |
tree | 7083e8a8f94f96c3f09f7cc7a1b6250efac94d8f /gcc | |
parent | 4c64aaf6a411e5426f6a9e0b464118179ab60ef1 (diff) | |
download | gcc-c1c35f175d810f2a5869e81b50e1521545d345c2.zip gcc-c1c35f175d810f2a5869e81b50e1521545d345c2.tar.gz gcc-c1c35f175d810f2a5869e81b50e1521545d345c2.tar.bz2 |
*** empty log message ***
From-SVN: r1073
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/reg-stack.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 3f40732..8b15005 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -561,7 +561,6 @@ constrain_asm_operands (n_operands, operands, operand_constraints, case '=': case '+': case '?': - case '#': case '&': case '!': case '*': @@ -569,6 +568,11 @@ constrain_asm_operands (n_operands, operands, operand_constraints, /* Ignore these. */ break; + case '#': + /* Ignore rest of this alternative. */ + while (*p && *p != ',') p++; + break; + case '0': case '1': case '2': |