]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cse: Small boolization of follow_jumps argument to cse_find_path
authorAndrew Pinski <andrew.pinski@oss.qualcomm.com>
Mon, 22 Dec 2025 02:08:51 +0000 (18:08 -0800)
committerAndrew Pinski <andrew.pinski@oss.qualcomm.com>
Thu, 8 Jan 2026 00:47:10 +0000 (16:47 -0800)
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 <andrew.pinski@oss.qualcomm.com>
gcc/cse.cc

index 2ad46306f4e22e71de3fed400953a6614bc64d75..a86fe3078195cdecee18cc9ef9d89695877e08a5 100644 (file)
@@ -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;