insn_extract takes an rtx_insn
gcc/ChangeLog: 2014-09-10 David Malcolm <dmalcolm@redhat.com> * genextract.c (print_header): When writing out insn_extract to insn-extract.c, strengthen the param "insn" from rtx to rtx_insn *. * recog.h (insn_extract): Strengthen the param from rtx to rtx_insn *. From-SVN: r215132
This commit is contained in:
parent
86b8825bfe
commit
d0bffe555a
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2014-09-10 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
* genextract.c (print_header): When writing out insn_extract to
|
||||
insn-extract.c, strengthen the param "insn" from rtx to rtx_insn *.
|
||||
* recog.h (insn_extract): Strengthen the param from rtx to
|
||||
rtx_insn *.
|
||||
|
||||
2014-09-10 Mike Stump <mikestump@comcast.net>
|
||||
|
||||
* doc/install.texi (Prerequisites): Note Tcl 8.6 bug fixed in
|
||||
|
|
|
@ -367,7 +367,7 @@ static rtx junk ATTRIBUTE_UNUSED;\n");
|
|||
|
||||
puts ("\
|
||||
void\n\
|
||||
insn_extract (rtx insn)\n{\n\
|
||||
insn_extract (rtx_insn *insn)\n{\n\
|
||||
rtx *ro = recog_data.operand;\n\
|
||||
rtx **ro_loc = recog_data.operand_loc;\n\
|
||||
rtx pat = PATTERN (insn);\n\
|
||||
|
|
|
@ -132,7 +132,7 @@ static inline int recog_memoized (rtx_insn *insn);
|
|||
#endif
|
||||
extern void add_clobbers (rtx, int);
|
||||
extern int added_clobbers_hard_reg_p (int);
|
||||
extern void insn_extract (rtx);
|
||||
extern void insn_extract (rtx_insn *);
|
||||
extern void extract_insn (rtx_insn *);
|
||||
extern void extract_constrain_insn_cached (rtx_insn *);
|
||||
extern void extract_insn_cached (rtx_insn *);
|
||||
|
|
Loading…
Add table
Reference in a new issue