From f8570abe6f059670716024adb53b5c4b881638ab Mon Sep 17 00:00:00 2001 From: ktkachov Date: Mon, 9 May 2016 10:21:06 +0000 Subject: [PATCH] [ARM] Add mode to probe_stack set operands * config/arm/arm.md (probe_stack): Add modes to set source and destination. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@236024 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/config/arm/arm.md | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0d839de5a77..478b179ac71 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-05-09 Kyrylo Tkachov + + * config/arm/arm.md (probe_stack): Add modes to set source + and destination. + 2016-05-09 Bernd Schmidt * regrename.c (base_reg_class_for_rename): New static function. diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index e264ae3f56c..7cf87efd70a 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -8156,8 +8156,8 @@ ) (define_insn "probe_stack" - [(set (match_operand 0 "memory_operand" "=m") - (unspec [(const_int 0)] UNSPEC_PROBE_STACK))] + [(set (match_operand:SI 0 "memory_operand" "=m") + (unspec:SI [(const_int 0)] UNSPEC_PROBE_STACK))] "TARGET_32BIT" "str%?\\tr0, %0" [(set_attr "type" "store1") -- 2.11.4.GIT