Index: tools/clang/scripts/update.py |
diff --git a/tools/clang/scripts/update.py b/tools/clang/scripts/update.py |
index 96d45b4952d6f0219c3451f3117d8b4dad8f5bc2..1f764f9695ff3601d9a7a1507c5cde3acc6c8503 100755 |
--- a/tools/clang/scripts/update.py |
+++ b/tools/clang/scripts/update.py |
@@ -27,14 +27,14 @@ import zipfile |
# 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 = '284979' |
+CLANG_REVISION = '287226' |
use_head_revision = 'LLVM_FORCE_HEAD_REVISION' in os.environ |
if use_head_revision: |
CLANG_REVISION = 'HEAD' |
# This is incremented when pushing a new build of Clang at the same revision. |
-CLANG_SUB_REVISION=2 |
+CLANG_SUB_REVISION=1 |
PACKAGE_VERSION = "%s-%s" % (CLANG_REVISION, CLANG_SUB_REVISION) |