diff options
author | David S. Miller <davem@pierdol.cobaltmicro.com> | 1998-09-13 21:22:53 +0000 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 1998-09-13 14:22:53 -0700 |
commit | 073149a276f2f0c0d3437acb8a94b1fc2cee7888 (patch) | |
tree | 99415886098296a329a4081dab19ebae34671e4e /gcc | |
parent | 51568a9c4c435b9ee9e629b08ce845004c3f933e (diff) | |
download | gcc-073149a276f2f0c0d3437acb8a94b1fc2cee7888.zip gcc-073149a276f2f0c0d3437acb8a94b1fc2cee7888.tar.gz gcc-073149a276f2f0c0d3437acb8a94b1fc2cee7888.tar.bz2 |
Fix non-local goto testsuite failures on sparc64.
* config/sparc/sparc.md (goto_handler_and_restore): Allow any mode
for operand zero.
From-SVN: r22406
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.md | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 48ba44b..8abf913 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -11,6 +11,9 @@ Sun Sep 13 19:17:35 1998 David S. Miller <davem@pierdol.cobaltmicro.com> * config/sparc/sol2.h (INIT_SUBTARGET_OPTABS): Get the names right for arch64 libfuncs. + * config/sparc/sparc.md (goto_handler_and_restore): Allow any mode + for operand zero. + Sun Sep 13 09:11:59 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * acconfig.h (NEED_DECLARATION_STRSIGNAL): Provide a stub. diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index 8129fa3..a66cfda 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -7617,7 +7617,7 @@ (set_attr "length" "1")]) (define_insn "goto_handler_and_restore" - [(unspec_volatile [(match_operand:SI 0 "register_operand" "=r")] 2)] + [(unspec_volatile [(match_operand 0 "register_operand" "=r")] 2)] "" "jmp\\t%0+0\\n\\trestore" [(set_attr "type" "misc") |