diff options
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index 5089d36..d01c663 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -795,7 +795,7 @@ same_stmt_list_p (edge e) /* Return TRUE if S1 and S2 are equivalent copies. */ static inline bool -identical_copies_p (tree s1, tree s2) +identical_copies_p (const_tree s1, const_tree s2) { #ifdef ENABLE_CHECKING gcc_assert (TREE_CODE (s1) == GIMPLE_MODIFY_STMT); @@ -821,7 +821,7 @@ identical_copies_p (tree s1, tree s2) contain the same sequence of copies. */ static inline bool -identical_stmt_lists_p (edge e1, edge e2) +identical_stmt_lists_p (const_edge e1, const_edge e2) { tree t1 = PENDING_STMT (e1); tree t2 = PENDING_STMT (e2); |