diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2020-08-10 09:39:03 +0200 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2020-08-10 13:01:03 +0200 |
commit | 7b7bbbcf510bbc0d95389d157369ade799af4717 (patch) | |
tree | 75c4fd9c4883d300ec96a9f424882986be78fe48 /gcc/value-range.h | |
parent | 287522613d661b4c5ba8403b051eb470c1674cba (diff) | |
download | gcc-7b7bbbcf510bbc0d95389d157369ade799af4717.zip gcc-7b7bbbcf510bbc0d95389d157369ade799af4717.tar.gz gcc-7b7bbbcf510bbc0d95389d157369ade799af4717.tar.bz2 |
Declare gt_* functions inline in value-range.h.
gcc/ChangeLog:
* value-range.h (gt_ggc_mx): Declare inline.
(gt_pch_nx): Same.
Diffstat (limited to 'gcc/value-range.h')
-rw-r--r-- | gcc/value-range.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/value-range.h b/gcc/value-range.h index e3282c4..1ab3993 100644 --- a/gcc/value-range.h +++ b/gcc/value-range.h @@ -343,7 +343,7 @@ range_includes_zero_p (const irange *vr) } template<unsigned N> -static inline void +inline void gt_ggc_mx (int_range<N> *x) { for (unsigned i = 0; i < N; ++i) @@ -354,7 +354,7 @@ gt_ggc_mx (int_range<N> *x) } template<unsigned N> -static inline void +inline void gt_pch_nx (int_range<N> *x) { for (unsigned i = 0; i < N; ++i) @@ -365,7 +365,7 @@ gt_pch_nx (int_range<N> *x) } template<unsigned N> -static inline void +inline void gt_pch_nx (int_range<N> *x, gt_pointer_operator op, void *cookie) { for (unsigned i = 0; i < N; ++i) |