diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2002-09-10 15:39:44 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 2002-09-10 15:39:44 +0000 |
commit | 7730c3ff8c167bd112a898cd65a0aa8585b316da (patch) | |
tree | 9fe4501f084a91487032f5e0447de2f49e896b2a /gcc | |
parent | 5add3202082f40197d4fa3a8e82909193a876858 (diff) | |
download | gcc-7730c3ff8c167bd112a898cd65a0aa8585b316da.zip gcc-7730c3ff8c167bd112a898cd65a0aa8585b316da.tar.gz gcc-7730c3ff8c167bd112a898cd65a0aa8585b316da.tar.bz2 |
re PR c/7873 (arm-linux-gcc fails when assigning address to a bit field)
PR c/7873
* arm.md (insv): Use reg_or_int_operand for operand[3].
From-SVN: r57006
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/arm.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dedab93..15e8354 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-09-10 Richard Earnshaw <rearnsha@arm.com> + + PR c/7873 + * arm.md (insv): Use reg_or_int_operand for operand[3]. + 2002-09-10 David Edelsohn <edelsohn@gnu.org> * rs6000.c (rs6000_assemble_visibility): Protect declaration diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index 15fbde7..38b6e27 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -1867,7 +1867,7 @@ [(set (zero_extract:SI (match_operand:SI 0 "s_register_operand" "") (match_operand:SI 1 "general_operand" "") (match_operand:SI 2 "general_operand" "")) - (match_operand:SI 3 "nonmemory_operand" ""))] + (match_operand:SI 3 "reg_or_int_operand" ""))] "TARGET_ARM" " { |