mirror of git://gcc.gnu.org/git/gcc.git
sh.md (sym_label2reg): Make sure all CONSTs have modes.
* config/sh/sh.md (sym_label2reg): Make sure all CONSTs have modes. From-SVN: r49192
This commit is contained in:
parent
b6a95741e8
commit
a4f76ef9f3
|
|
@ -1,3 +1,8 @@
|
|||
2002-01-24 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* config/sh/sh.md (sym_label2reg): Make sure all CONSTs have
|
||||
modes.
|
||||
|
||||
2002-01-24 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
* config/h8300/h8300.c (print_operand): Remove support for
|
||||
|
|
|
|||
|
|
@ -3784,11 +3784,13 @@
|
|||
|
||||
(define_expand "sym_label2reg"
|
||||
[(set (match_operand:SI 0 "" "")
|
||||
(const (minus:SI
|
||||
(const:SI (unspec:SI [(match_operand:SI 1 "" "")] UNSPEC_PIC))
|
||||
(const (plus:SI
|
||||
(match_operand:SI 2 "" "")
|
||||
(const_int 2))))))]
|
||||
(const:SI (minus:SI
|
||||
(const:SI
|
||||
(unspec:SI [(match_operand:SI 1 "" "")] UNSPEC_PIC))
|
||||
(const:SI
|
||||
(plus:SI
|
||||
(match_operand:SI 2 "" "")
|
||||
(const_int 2))))))]
|
||||
"" "")
|
||||
|
||||
(define_expand "symGOT_load"
|
||||
|
|
|
|||
Loading…
Reference in New Issue