Just a small patch to change follow_jumps to bool since it is used as a bool.
gcc/ChangeLog:
* cse.cc (cse_find_path): Change follow_jumps to bool.
Signed-off-by: Andrew Pinski <[email protected]>
---
gcc/cse.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/cse.cc b/gcc/cse.cc
index 2ad46306f4e..a86fe307819 100644
--- a/gcc/cse.cc
+++ b/gcc/cse.cc
@@ -6292,7 +6292,7 @@ cse_process_note (rtx x)
static bool
cse_find_path (basic_block first_bb, struct cse_basic_block_data *data,
- int follow_jumps)
+ bool follow_jumps)
{
basic_block bb;
edge e;
--
2.43.0