Index: llvm/trunk/docs/TestSuiteGuide.md =================================================================== --- llvm/trunk/docs/TestSuiteGuide.md +++ llvm/trunk/docs/TestSuiteGuide.md @@ -17,7 +17,7 @@ ```bash % mkdir venv - % virtualenv -p python2.7 venv + % virtualenv venv % . venv/bin/activate % pip install svn+http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit % lit --version Index: llvm/trunk/tools/opt-viewer/opt-diff.py =================================================================== --- llvm/trunk/tools/opt-viewer/opt-diff.py +++ llvm/trunk/tools/opt-viewer/opt-diff.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python from __future__ import print_function Index: llvm/trunk/tools/opt-viewer/opt-stats.py =================================================================== --- llvm/trunk/tools/opt-viewer/opt-stats.py +++ llvm/trunk/tools/opt-viewer/opt-stats.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python from __future__ import print_function Index: llvm/trunk/tools/opt-viewer/opt-viewer.py =================================================================== --- llvm/trunk/tools/opt-viewer/opt-viewer.py +++ llvm/trunk/tools/opt-viewer/opt-viewer.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python from __future__ import print_function Index: llvm/trunk/tools/opt-viewer/optrecord.py =================================================================== --- llvm/trunk/tools/opt-viewer/optrecord.py +++ llvm/trunk/tools/opt-viewer/optrecord.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python from __future__ import print_function Index: llvm/trunk/utils/update_analyze_test_checks.py =================================================================== --- llvm/trunk/utils/update_analyze_test_checks.py +++ llvm/trunk/utils/update_analyze_test_checks.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python """A script to generate FileCheck statements for 'opt' analysis tests. Index: llvm/trunk/utils/update_llc_test_checks.py =================================================================== --- llvm/trunk/utils/update_llc_test_checks.py +++ llvm/trunk/utils/update_llc_test_checks.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python """A test case update script. Index: llvm/trunk/utils/update_mca_test_checks.py =================================================================== --- llvm/trunk/utils/update_mca_test_checks.py +++ llvm/trunk/utils/update_mca_test_checks.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python """A test case update script. Index: llvm/trunk/utils/update_test_checks.py =================================================================== --- llvm/trunk/utils/update_test_checks.py +++ llvm/trunk/utils/update_test_checks.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python """A script to generate FileCheck statements for 'opt' regression tests.