diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-08-28 06:24:40 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-08-28 06:24:40 +0000 |
commit | 6180e3d8705e54db209efe706a778e79965be34c (patch) | |
tree | ff3a999faab06864d0dc71315f1ceadd4bd5c761 /gcc/rtl.h | |
parent | 8d8e205b922741ad452fbe0750d2d8af8515c967 (diff) | |
download | gcc-6180e3d8705e54db209efe706a778e79965be34c.zip gcc-6180e3d8705e54db209efe706a778e79965be34c.tar.gz gcc-6180e3d8705e54db209efe706a778e79965be34c.tar.bz2 |
rtl.h (tls_referenced_p): Take a const_rtx rather than an rtx.
gcc/
* rtl.h (tls_referenced_p): Take a const_rtx rather than an rtx.
* rtlanal.c (tls_referenced_p_1): Delete.
(tls_referenced_p): Take a const_rtx rather than an rtx.
Use FOR_EACH_SUBRTX rather than for_each_rtx.
From-SVN: r214658
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2797,7 +2797,7 @@ extern void replace_label_in_insn (rtx_insn *, rtx, rtx, bool); extern bool rtx_referenced_p (const_rtx, const_rtx); extern bool tablejump_p (const_rtx, rtx *, rtx_jump_table_data **); extern int computed_jump_p (const_rtx); -extern bool tls_referenced_p (rtx); +extern bool tls_referenced_p (const_rtx); typedef int (*rtx_function) (rtx *, void *); extern int for_each_rtx (rtx *, rtx_function, void *); |