From: Kyrylo Tkachov Date: Mon, 9 May 2016 10:21:06 +0000 (+0000) Subject: [ARM] Add mode to probe_stack set operands X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc48633e86abf4dacc6ee7281a3be14d97328980;p=gcc.git [ARM] Add mode to probe_stack set operands * config/arm/arm.md (probe_stack): Add modes to set source and destination. From-SVN: r236024 --- 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")