diff options
Diffstat (limited to 'gcc/gimple-range-fold.h')
-rw-r--r-- | gcc/gimple-range-fold.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gimple-range-fold.h b/gcc/gimple-range-fold.h index b7098c2..10b5c18 100644 --- a/gcc/gimple-range-fold.h +++ b/gcc/gimple-range-fold.h @@ -44,7 +44,7 @@ bool fold_range (vrange &r, gimple *s, unsigned num_elements, vrange **vector); // Return the type of range which statement S calculates. If the type is // unsupported or no type can be determined, return NULL_TREE. -static inline tree +inline tree gimple_range_type (const gimple *s) { tree lhs = gimple_get_lhs (s); @@ -73,7 +73,7 @@ gimple_range_type (const gimple *s) // Return EXP if it is an SSA_NAME with a type supported by gimple ranges. -static inline tree +inline tree gimple_range_ssa_p (tree exp) { if (exp && TREE_CODE (exp) == SSA_NAME && @@ -86,7 +86,7 @@ gimple_range_ssa_p (tree exp) // Return true if TYPE1 and TYPE2 are compatible range types. -static inline bool +inline bool range_compatible_p (tree type1, tree type2) { // types_compatible_p requires conversion in both directions to be useless. |