aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-05-31 07:19:37 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1994-05-31 07:19:37 -0400
commit058f58ed24812ddfe91a9f8cf8f83378e9fc4c33 (patch)
treeb42d8b538d94225825d6409ea06b22651a42148d /gcc
parent86739c7bb79b8c688044f7287e9a5f753546be3e (diff)
downloadgcc-058f58ed24812ddfe91a9f8cf8f83378e9fc4c33.zip
gcc-058f58ed24812ddfe91a9f8cf8f83378e9fc4c33.tar.gz
gcc-058f58ed24812ddfe91a9f8cf8f83378e9fc4c33.tar.bz2
(expand_asm_operands): Make MEM with BLKmode for clobber of "memory".
From-SVN: r7394
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 f62cb63..3fe8cde 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -1559,7 +1559,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
{
XVECEXP (body, 0, i++)
= gen_rtx (CLOBBER, VOIDmode,
- gen_rtx (MEM, QImode,
+ gen_rtx (MEM, BLKmode,
gen_rtx (SCRATCH, VOIDmode, 0)));
continue;
}