[llvm] [utils] Use Python3 for `bisect-skip-count` (PR #84979)

Justin Fargnoli via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 12 13:36:52 PDT 2024


https://github.com/justinfargnoli created https://github.com/llvm/llvm-project/pull/84979

None

>From 0862791d2e64159720e4c84733371a03b928303a Mon Sep 17 00:00:00 2001
From: Justin Fargnoli <34139864+justinfargnoli at users.noreply.github.com>
Date: Tue, 12 Mar 2024 13:35:43 -0700
Subject: [PATCH] Use Python3 for bisect-skip-count

---
 llvm/utils/bisect-skip-count | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/utils/bisect-skip-count b/llvm/utils/bisect-skip-count
index efdd2c937e1529..1a64eba381dc8a 100755
--- a/llvm/utils/bisect-skip-count
+++ b/llvm/utils/bisect-skip-count
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # This script is used to bisect skip and count arguments for --debug-counter.
 # It is similar to bisect, except it understands how to increase skip and decrease count
 #



More information about the llvm-commits mailing list