aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-08-13 18:36:03 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-08-13 18:36:03 -0400
commit52d575b0a005b6d5682c8431ed80be9fbc31db9a (patch)
treef2613cd5102b24ce54a85cae90b26782ebfe9296 /gcc
parent254d3f88b467dffb1c34e23aac1a96ab243550d0 (diff)
downloadgcc-52d575b0a005b6d5682c8431ed80be9fbc31db9a.zip
gcc-52d575b0a005b6d5682c8431ed80be9fbc31db9a.tar.gz
gcc-52d575b0a005b6d5682c8431ed80be9fbc31db9a.tar.bz2
(expand_asm_operands): Type '0'..'4' operands may allow regs, so move
them to the default case. From-SVN: r10218
Diffstat (limited to 'gcc')
-rw-r--r--gcc/stmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index b60abe1..5002b89 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;