Commit c9ee1e8b authored by hans@chromium.org's avatar hans@chromium.org

Roll Clang r170392:r174491.

BUG=174873, 170629

Review URL: https://codereview.chromium.org/12220089

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182241 0039d316-1c4b-4281-b951-d872f2087c98
parent 484ca521
...@@ -2790,6 +2790,10 @@ ...@@ -2790,6 +2790,10 @@
# Warns on switches on enums that cover all enum values but # Warns on switches on enums that cover all enum values but
# also contain a default: branch. Chrome is full of that. # also contain a default: branch. Chrome is full of that.
'-Wno-covered-switch-default', '-Wno-covered-switch-default',
# TODO(thakis,hans): Remove once Clang doesn't warn about false
# positives in our code.
'-Wno-undefined-internal',
], ],
'cflags!': [ 'cflags!': [
# Clang doesn't seem to know know this flag. # Clang doesn't seem to know know this flag.
...@@ -3374,6 +3378,10 @@ ...@@ -3374,6 +3378,10 @@
# Warns on switches on enums that cover all enum values but # Warns on switches on enums that cover all enum values but
# also contain a default: branch. Chrome is full of that. # also contain a default: branch. Chrome is full of that.
'-Wno-covered-switch-default', '-Wno-covered-switch-default',
# TODO(thakis,hans): Remove once Clang doesn't warn about false
# positives in our code.
'-Wno-undefined-internal',
], ],
'OTHER_CPLUSPLUSFLAGS': [ 'OTHER_CPLUSPLUSFLAGS': [
# gnu++11 instead of c++11 so that __ANSI_C__ doesn't get # gnu++11 instead of c++11 so that __ANSI_C__ doesn't get
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
# 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://code.google.com/p/chromium/wiki/UpdatingClang # https://code.google.com/p/chromium/wiki/UpdatingClang
# Reverting problematic clang rolls is safe, though. # Reverting problematic clang rolls is safe, though.
CLANG_REVISION=170392 CLANG_REVISION=174491
# ASan Mac builders are pinned to this revision, see http://crbug.com/170629. # ASan Mac builders are pinned to this revision, see http://crbug.com/170629.
CLANG_ASAN_MAC_REVISION=170392 CLANG_ASAN_MAC_REVISION=170392
......
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