diff --git a/tools/clang/scripts/update.py b/tools/clang/scripts/update.py index a0bb4a2..720a9bf 100755 --- a/tools/clang/scripts/update.py +++ b/tools/clang/scripts/update.py
@@ -39,14 +39,13 @@ # Do NOT CHANGE this if you don't know what you're doing -- see # https://chromium.googlesource.com/chromium/src/+/master/docs/updating_clang.md # Reverting problematic clang rolls is safe, though. -CLANG_REVISION = 'c2443155a0fb245c8f17f2c1c72b6ea391e86e81' -CLANG_SVN_REVISION = 'n332890' -CLANG_SUB_REVISION = 2 +CLANG_REVISION = 'c29003813ab9bd6ea7b6de40ea8f1fe21979f13f' +CLANG_SVN_REVISION = 'n341867' +CLANG_SUB_REVISION = 1 PACKAGE_VERSION = '%s-%s-%s' % (CLANG_SVN_REVISION, CLANG_REVISION[:8], CLANG_SUB_REVISION) -# TODO(crbug.com/985289): Bump to 11.0.0 in the next Clang roll. -RELEASE_VERSION = '10.0.0' +RELEASE_VERSION = '11.0.0' CDS_URL = os.environ.get('CDS_CLANG_BUCKET_OVERRIDE', @@ -341,11 +340,6 @@ help='Verify that clang has the passed-in version.') args = parser.parse_args() - # TODO(crbug.com/1042192): Remove in the next Clang roll. - if args.llvm_force_head_revision: - global RELEASE_VERSION - RELEASE_VERSION = '11.0.0' - if args.force_local_build: print(('update.py --force-local-build is no longer used to build clang; ' 'use build.py instead.'))