aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-08-22 20:19:07 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-08-22 20:19:07 +0000
commitf695656902c24ec3c56c00020d49097e4d73a761 (patch)
tree0679cb56fef1bd6c190c3c0d8e4e2fc983195a2b /gcc/rtl.h
parentea8175a4da682ef30d30ae922c0d21a6e7e318cf (diff)
downloadgcc-f695656902c24ec3c56c00020d49097e4d73a761.zip
gcc-f695656902c24ec3c56c00020d49097e4d73a761.tar.gz
gcc-f695656902c24ec3c56c00020d49097e4d73a761.tar.bz2
reginfo.c: Use rtx_insn (also touches rtl.h)
gcc/ * rtl.h (reg_scan): Strengthen param "f" from rtx to rtx_insn *. * reginfo.c (reg_scan): Likewise, also for local "insn". (reg_scan_mark_refs): Likewise for param "insn". (init_subregs_of_mode): Likewise for local "insn". From-SVN: r214367
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index aa3f8d0..a4b5e10 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -3207,7 +3207,7 @@ extern void init_fake_stack_mems (void);
extern void save_register_info (void);
extern void init_reg_sets (void);
extern void regclass (rtx, int);
-extern void reg_scan (rtx, unsigned int);
+extern void reg_scan (rtx_insn *, unsigned int);
extern void fix_register (const char *, int, int);
extern bool invalid_mode_change_p (unsigned int, enum reg_class);