From 4eeaee5d0744aa39b340be11d3ff4589d1e37082 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Sun, 23 Jul 2000 17:17:37 +0000 Subject: [PATCH] unuglyfying code From-SVN: r35206 --- gcc/recog.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gcc/recog.c b/gcc/recog.c index 3b7dab3..a8d06bb 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -934,10 +934,13 @@ general_operand (op, mode) if (code == MEM) { register rtx y = XEXP (op, 0); + if (! volatile_ok && MEM_VOLATILE_P (op)) return 0; + if (GET_CODE (y) == ADDRESSOF) return 1; + /* Use the mem's mode, since it will be reloaded thus. */ mode = GET_MODE (op); GO_IF_LEGITIMATE_ADDRESS (mode, y, win); -- 2.7.4