From 8d142c15c918df6d30aebd44ad34f2700254c25c Mon Sep 17 00:00:00 2001 From: Daniel Gutson Date: Fri, 4 Sep 2009 15:42:05 +0000 Subject: [PATCH] arm.md (ctzsi2): Added braces to avoid warning that broke booststrap. 2009-09-04 Daniel Gutson * config/arm/arm.md (ctzsi2): Added braces to avoid warning that broke booststrap. From-SVN: r151427 --- gcc/ChangeLog | 5 +++++ gcc/config/arm/arm.md | 8 +++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b160b4..34bc5c2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-09-04 Daniel Gutson + + * config/arm/arm.md (ctzsi2): Added braces + to avoid warning that broke booststrap. + 2009-09-04 Martin Jambor PR tree-optimization/41112 diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index fd00c70..e180c2f 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -10969,9 +10969,11 @@ (ctz:SI (match_operand:SI 1 "s_register_operand" "")))] "TARGET_32BIT && arm_arch_thumb2" " - rtx tmp = gen_reg_rtx (SImode); - emit_insn (gen_rbitsi2 (tmp, operands[1])); - emit_insn (gen_clzsi2 (operands[0], tmp)); + { + rtx tmp = gen_reg_rtx (SImode); + emit_insn (gen_rbitsi2 (tmp, operands[1])); + emit_insn (gen_clzsi2 (operands[0], tmp)); + } DONE; " ) -- 2.7.4