diff options
| author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-21 01:39:17 +0000 |
|---|---|---|
| committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-21 01:39:17 +0000 |
| commit | f73be2c0015ade4cde0d222d5d12dc317b261cc0 (patch) | |
| tree | 52bfc810d5c9a48459fc37a10089c672ec42a6a3 | |
| parent | 13906b028db0d396dcfbee7f9c98df27b064decd (diff) | |
| download | ppe42-gcc-f73be2c0015ade4cde0d222d5d12dc317b261cc0.tar.gz ppe42-gcc-f73be2c0015ade4cde0d222d5d12dc317b261cc0.zip | |
Fix IA-64 bootstrap error caused by -fregrename which is now the default.
* config/ia64/ia64.md (call_value_nogp): Add constraints for op0.
(vall_value_gp): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80942 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/ia64/ia64.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c7c4997e15..6232143becc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-04-20 James E Wilson <wilson@specifixinc.com> + + * config/ia64/ia64.md (call_value_nogp): Add constraints for op0. + (vall_value_gp): Likewise. + 2004-04-20 DJ Delorie <dj@redhat.com> * dwarf2out.c (rtl_for_decl_location): Adjust rtl for byte diff --git a/gcc/config/ia64/ia64.md b/gcc/config/ia64/ia64.md index 87857047717..c9d12c0904b 100644 --- a/gcc/config/ia64/ia64.md +++ b/gcc/config/ia64/ia64.md @@ -5137,7 +5137,7 @@ [(set_attr "itanium_class" "br,scall")]) (define_insn "call_value_nogp" - [(set (match_operand 0 "" "") + [(set (match_operand 0 "" "=X,X") (call (mem:DI (match_operand:DI 1 "call_operand" "?b,i")) (const_int 0))) (clobber (match_operand:DI 2 "register_operand" "=b,b"))] @@ -5193,7 +5193,7 @@ }) (define_insn "call_value_gp" - [(set (match_operand 0 "" "") + [(set (match_operand 0 "" "=X,X") (call (mem:DI (match_operand:DI 1 "call_operand" "?r,i")) (const_int 1))) (clobber (match_operand:DI 2 "register_operand" "=b,b")) |

