From 13e93ffe96bb9222d202e3285887b06c4450dd1c Mon Sep 17 00:00:00 2001 From: kenner Date: Sun, 13 Aug 1995 22:36:03 +0000 Subject: [PATCH] (expand_asm_operands): Type '0'..'4' operands may allow regs, so move them to the default case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10218 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/stmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/stmt.c b/gcc/stmt.c index b60abe1bb5b..5002b8942e2 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -1533,7 +1533,6 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line) return; case '?': case '!': case '*': case '%': case '&': - case '0': case '1': case '2': case '3': case '4': case 'V': case 'm': case 'o': case '<': case '>': case 'E': case 'F': case 'G': case 'H': case 'X': case 's': case 'i': case 'n': @@ -1544,6 +1543,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line) #endif break; + case '0': case '1': case '2': case '3': case '4': case 'p': case 'g': case 'r': default: allows_reg = 1; -- 2.11.0