aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/rs6000/predicates.md
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2012-10-18 22:33:15 +0000
committerAlan Modra <amodra@gmail.com>2012-10-18 22:33:15 +0000
commitb5953960164d3cc20cbc697cec24fccfb6239bb2 (patch)
treebfde550d6e2de6f56f360d428c1995af98644df9 /gcc/config/rs6000/predicates.md
parentffa9df153e8ca361b071f106728a898e418e6cd5 (diff)
* config/rs6000/predicates.md (splat_input_operand): Don't call
input_operand for MEMs. Instead check for volatile and call memory_address_addr_space_p with modified mode. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@192590 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000/predicates.md')
-rw-r--r--gcc/config/rs6000/predicates.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/rs6000/predicates.md b/gcc/config/rs6000/predicates.md
index 99130ba6eef..fc20a5e5761 100644
--- a/gcc/config/rs6000/predicates.md
+++ b/gcc/config/rs6000/predicates.md
@@ -940,12 +940,16 @@
{
if (MEM_P (op))
{
+ if (! volatile_ok && MEM_VOLATILE_P (op))
+ return 0;
if (mode == DFmode)
mode = V2DFmode;
else if (mode == DImode)
mode = V2DImode;
else
- gcc_unreachable ();
+ gcc_unreachable ();
+ return memory_address_addr_space_p (mode, XEXP (op, 0),
+ MEM_ADDR_SPACE (op));
}
return input_operand (op, mode);
})