diff options
author | Richard Henderson <rth@redhat.com> | 2011-03-24 17:04:19 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2011-03-24 17:04:19 -0700 |
commit | 6abe71eb3d5ea03e4a6bc56968607e59a5bafbb8 (patch) | |
tree | 3121696330a323ad14f67fddeaaaf46319aa0405 /gcc | |
parent | 8039ca76a5705ae5052b20cee64110c32545c4fc (diff) | |
download | gcc-6abe71eb3d5ea03e4a6bc56968607e59a5bafbb8.zip gcc-6abe71eb3d5ea03e4a6bc56968607e59a5bafbb8.tar.gz gcc-6abe71eb3d5ea03e4a6bc56968607e59a5bafbb8.tar.bz2 |
alpha: Revert change to input_operand for 32-bit vms.
From-SVN: r171428
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/alpha/predicates.md | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 85c45b6..aef5088 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-02-24 Richard Henderson <rth@redhat.com> + + * config/alpha/predicates.md (input_operand): Revert last change; + update comment to mention 32-bit VMS rather than Windows. + 2011-03-24 Nathan Froyd <froydnj@codesourcery.com> * function.c (instantiate_virtual_regs): Use FOR_EACH_BB and diff --git a/gcc/config/alpha/predicates.md b/gcc/config/alpha/predicates.md index 9514b8a..da76d4f 100644 --- a/gcc/config/alpha/predicates.md +++ b/gcc/config/alpha/predicates.md @@ -195,7 +195,8 @@ || gotdtp_symbolic_operand (op, mode) || gottp_symbolic_operand (op, mode)); } - return mode == Pmode; + /* VMS still has a 32-bit mode. */ + return mode == ptr_mode || mode == Pmode; case HIGH: return (TARGET_EXPLICIT_RELOCS |