Commit b21c79dc authored by Reid Kleckner's avatar Reid Kleckner Committed by Commit Bot

Roll clang n332890-c2443155-1 : n333938-3a6da112-1.

Ran `./tools/clang/scripts/upload_revision.py 3a6da1122b990386edeba0987d0d1fdc9c8dc53d`.

Bug: 1030664
Change-Id: I229bf8fd0d65fcacdab5f002220d1350b38aedb6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1966387
Auto-Submit: Reid Kleckner <rnk@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727069}
parent d34c3531
...@@ -632,14 +632,12 @@ config("compiler") { ...@@ -632,14 +632,12 @@ config("compiler") {
] ]
} }
if (llvm_force_head_revision) { # Disable TypePromotion to see if that fixes the ToT bots.
# Disable TypePromotion to see if that fixes the ToT bots. # TODO(crbug.com/1033863): Get this fixed upstream.
# TODO(crbug.com/1033863): Get this fixed upstream. ldflags += [
ldflags += [ "-Wl,-mllvm",
"-Wl,-mllvm", "-Wl,-disable-type-promotion=true",
"-Wl,-disable-type-promotion=true", ]
]
}
} else { } else {
ldflags += [ "-Wl,-plugin-opt,jobs=" + max_jobs_per_link ] ldflags += [ "-Wl,-plugin-opt,jobs=" + max_jobs_per_link ]
} }
...@@ -1536,6 +1534,9 @@ config("default_warnings") { ...@@ -1536,6 +1534,9 @@ config("default_warnings") {
# TODO(https://crbug.com/1028110): Evaluate and possible enable. # TODO(https://crbug.com/1028110): Evaluate and possible enable.
"-Wno-deprecated-copy", "-Wno-deprecated-copy",
# TODO(https://crbug.com/1031169): Clean up and enable.
"-Wno-misleading-indentation",
] ]
if (is_win) { if (is_win) {
...@@ -1549,13 +1550,6 @@ config("default_warnings") { ...@@ -1549,13 +1550,6 @@ config("default_warnings") {
# TODO(https://crbug.com/995993): Clean up and enable. # TODO(https://crbug.com/995993): Clean up and enable.
"-Wno-implicit-fallthrough", "-Wno-implicit-fallthrough",
] ]
if (llvm_force_head_revision) {
cflags += [
# TODO(https://crbug.com/1031169): Clean up and enable.
"-Wno-misleading-indentation",
]
}
} }
} }
} }
......
...@@ -39,8 +39,8 @@ import zipfile ...@@ -39,8 +39,8 @@ import zipfile
# Do NOT CHANGE this if you don't know what you're doing -- see # 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 # https://chromium.googlesource.com/chromium/src/+/master/docs/updating_clang.md
# Reverting problematic clang rolls is safe, though. # Reverting problematic clang rolls is safe, though.
CLANG_REVISION = 'c2443155a0fb245c8f17f2c1c72b6ea391e86e81' CLANG_REVISION = '3a6da1122b990386edeba0987d0d1fdc9c8dc53d'
CLANG_SVN_REVISION = 'n332890' CLANG_SVN_REVISION = 'n333938'
CLANG_SUB_REVISION = 1 CLANG_SUB_REVISION = 1
PACKAGE_VERSION = '%s-%s-%s' % (CLANG_SVN_REVISION, CLANG_REVISION[:8], PACKAGE_VERSION = '%s-%s-%s' % (CLANG_SVN_REVISION, CLANG_REVISION[:8],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment