aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2019-09-10 16:19:23 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2019-09-10 16:19:23 +0000
commite8b0314a583b028ad2d6508b455e33f5787bffe1 (patch)
tree0a912d382c9a09330094df197632485b07733b76 /gcc/rtl.h
parent68a57628f482c75003abfc77b5c2a3be029668fa (diff)
downloadgcc-e8b0314a583b028ad2d6508b455e33f5787bffe1.zip
gcc-e8b0314a583b028ad2d6508b455e33f5787bffe1.tar.gz
gcc-e8b0314a583b028ad2d6508b455e33f5787bffe1.tar.bz2
Make get_call_rtx_from take a const rtx_insn *
Only one caller (in dwarf2out.c) was preventing get_call_rtx_from from taking an rtx_insn *. Since that caller just passes a PATTERN, it's a trivial change to make. 2019-09-10 Richard Sandiford <richard.sandiford@arm.com> gcc/ * rtl.h (get_call_rtx_from): Take a const rtx_insn * instead of an rtx. * rtlanal.c (get_call_rtx_from): Likewise. * dwarf2out.c (dwarf2out_var_location): Pass the insn rather than the pattern to get_call_rtx_from. * config/i386/i386-expand.h (ix86_notrack_prefixed_insn_p): Take an rtx_insn * instead of an rtx. * config/i386/i386-expand.c (ix86_notrack_prefixed_insn_p): Likewise. From-SVN: r275593
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 911b563..c054861 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -3419,7 +3419,7 @@ extern bool nonzero_address_p (const_rtx);
extern int rtx_unstable_p (const_rtx);
extern bool rtx_varies_p (const_rtx, bool);
extern bool rtx_addr_varies_p (const_rtx, bool);
-extern rtx get_call_rtx_from (rtx);
+extern rtx get_call_rtx_from (const rtx_insn *);
extern HOST_WIDE_INT get_integer_term (const_rtx);
extern rtx get_related_value (const_rtx);
extern bool offset_within_block_p (const_rtx, HOST_WIDE_INT);