From c1c35f175d810f2a5869e81b50e1521545d345c2 Mon Sep 17 00:00:00 2001 From: James Van Artsdalen Date: Sun, 24 May 1992 18:57:01 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r1073 --- gcc/reg-stack.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 3f40732e0798..8b150050db90 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': -- 2.43.5