From 9f70869545cf40513ffc970f727282f04311aa50 Mon Sep 17 00:00:00 2001 From: Roman Rusyaev Date: Wed, 13 Jul 2022 13:02:32 -0700 Subject: [PATCH] Change shebang from python to python3 in update_cc_test_checks.py All update_test_checks.py scripts were updated in this revision https://reviews.llvm.org/D70730 except for update_cc_test_checks.py. Reviewed By: barannikov88 Differential Revision: https://reviews.llvm.org/D129590 --- llvm/utils/update_cc_test_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/update_cc_test_checks.py b/llvm/utils/update_cc_test_checks.py index 0ca98a47c9fc..211892a4d682 100755 --- a/llvm/utils/update_cc_test_checks.py +++ b/llvm/utils/update_cc_test_checks.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 '''A utility to update LLVM IR CHECK lines in C/C++ FileCheck test files. Example RUN lines in .c/.cc test files: -- 2.34.1