diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-08 16:40:06 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-08 16:40:06 +0000 |
commit | d5368093444337a3c7e5b9c7535627cc98f662af (patch) | |
tree | 46b201d8ed3246d54b1557f8bde71e1691c71bed /build | |
parent | 325d9d7b4b9d2a823b74bbffb44eb02a87861a3c (diff) | |
download | chromium_src-d5368093444337a3c7e5b9c7535627cc98f662af.zip chromium_src-d5368093444337a3c7e5b9c7535627cc98f662af.tar.gz chromium_src-d5368093444337a3c7e5b9c7535627cc98f662af.tar.bz2 |
Roll clang 131950:132735
Notable changes in the range:
* r132735 (hopefully) fixes a bug introduced in r131951 that made
gold 1.10 crash with
/usr/bin/ld: internal error in set_offset, at output.cc:4030
* r132535 fixes the crash at -O3 on mac
* r132565 adds a warning for "x + y ? a : b" to -Wparentheses
BUG=85289,84424
TEST=none
TBR=evan
Review URL: http://codereview.chromium.org/7046048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88344 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index be71ad2..1f323c3 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1364,7 +1364,7 @@ # are fixed in the views and chromeos code. # http://crbug.com/84424 # TODO(thakis): Add back in when rolling clang past r131989 - #'-Wno-delete-non-virtual-dtor', + '-Wno-delete-non-virtual-dtor', ], }]], }], @@ -1483,6 +1483,9 @@ # http://code.google.com/p/googletest/source/detail?r=446 . # TODO(thakis): Use -isystem instead (http://crbug.com/58751 ). '-Wno-unnamed-type-template-args', + # TODO(thakis): Reenable once the one instance this warns on + # is fixed. + '-Wno-parentheses', ], 'OTHER_CFLAGS': [ # TODO(thakis): Causes many warnings - http://crbug.com/75001 |