diff options
author | Daniel Gutson <dgutson@codesourcery.com> | 2009-09-04 15:42:05 +0000 |
---|---|---|
committer | Daniel Gutson <dgutson@gcc.gnu.org> | 2009-09-04 15:42:05 +0000 |
commit | 8d142c15c918df6d30aebd44ad34f2700254c25c (patch) | |
tree | 29aa7327aff05a7cb88c300f7d2a7b079a785ed0 /gcc/config | |
parent | 0e497905ceeb7bdb724aee3027e09ba32ec80e25 (diff) | |
download | gcc-8d142c15c918df6d30aebd44ad34f2700254c25c.zip gcc-8d142c15c918df6d30aebd44ad34f2700254c25c.tar.gz gcc-8d142c15c918df6d30aebd44ad34f2700254c25c.tar.bz2 |
arm.md (ctzsi2): Added braces to avoid warning that broke booststrap.
2009-09-04 Daniel Gutson <dgutson@codesourcery.com>
* config/arm/arm.md (ctzsi2): Added braces
to avoid warning that broke booststrap.
From-SVN: r151427
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/arm/arm.md | 8 |
1 files changed, 5 insertions, 3 deletions
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; " ) |