Roll skcms from 57e818ae88b7 to 16a890f7be9d (1 revision)

https://skia.googlesource.com/skcms.git/+log/57e818ae88b7..16a890f7be9d

2021-03-23 mtklein@google.com simplify diagnostic ignored "-Wpsabi"

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/skcms-skia-autoroll
Please CC mtklein@google.com,reed@google.com on the revert to ensure that a human
is aware of the problem.

To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md

Cq-Include-Trybots: luci.chromium.try:linux-blink-rel
Tbr: mtklein@google.com,reed@google.com
Change-Id: Id5c30dc38d2aac787f1c3ba647c2e3577c734c78
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/388256
Reviewed-by: skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.com>
Commit-Queue: skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.com>
This commit is contained in:
skia-autoroll 2021-03-23 16:44:16 +00:00 committed by Skia Commit-Bot
parent 8b3dd34956
commit ffc49942b2
2 changed files with 5 additions and 9 deletions

View File

@ -63,15 +63,11 @@ using U8 = V<uint8_t>;
#pragma clang diagnostic ignored "-Wvector-conversion"
#endif
// GCC & Clang warn us about returning U64 on x86 because it's larger than a register.
// GCC & Clang (but not clang-cl) warn returning U64 on x86 is larger than a register.
// You'd see warnings like, "using AVX even though AVX is not enabled".
// We stifle these warnings... our helpers that return U64 are always inlined.
#if defined(__SSE__)
#if defined(__clang__) && !defined(_MSC_VER)
#pragma clang diagnostic ignored "-Wpsabi"
#elif defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wpsabi"
#endif
// We stifle these warnings; our helpers that return U64 are always inlined.
#if defined(__SSE__) && defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wpsabi"
#endif
#if defined(__clang__)

View File

@ -1 +1 @@
57e818ae88b7e1e82e77ee05c5c277b41efd0587
16a890f7be9d70cf607b8b8efac29d93f706e0e5