Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index fb53e9264fb6062ca559700f1a3ab9a21ea5aca0..2738dc8de50de769d17c7e21e1a8efc4e6ac97ec 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -3903,6 +3903,10 @@ |
| # code generated by flex (used in angle) contains that keyword. |
| # http://crbug.com/255186 |
| '-Wno-deprecated-register', |
| + |
| + # TODO(thakis): Remove once http://llvm.org/PR20354 is fixed |
| + # and the fix is in chromium. |
| + '-fno-slp-vectorize', |
| ], |
| 'cflags!': [ |
| # Clang doesn't seem to know know this flag. |
| @@ -4743,6 +4747,11 @@ |
| # cfe-dev discussion. |
| '-Wno-selector-type-mismatch', |
| ], |
| + 'OTHER_CFLAGS': [ |
| + # TODO(thakis): Remove once http://llvm.org/PR20354 is fixed |
| + # and the fix is in chromium. |
| + '-fno-slp-vectorize', |
| + ] |
|
darin (slow to review)
2014/07/18 05:12:08
missing comma here?
|
| 'conditions': [ |
| ['clang_xcode==0', { |