Roll skcms from bae5e281e80f to ba17399285ce (1 revision)
https://skia.googlesource.com/skcms.git/+log/bae5e281e80f..ba17399285ce 2021-07-13 johnstiles@google.com Fix GCC 8.3 spurious warning when disabling -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 johnstiles@google.com,mtklein@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/main/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:linux-blink-rel Tbr: johnstiles@google.com,mtklein@google.com Change-Id: Ie44498b3083c90675dbc545cf15582510896bbef Reviewed-on: https://skia-review.googlesource.com/c/skia/+/427477 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:
parent
1edb41f4b3
commit
51eb0ca549
6
third_party/skcms/src/Transform_inl.h
vendored
6
third_party/skcms/src/Transform_inl.h
vendored
@ -67,7 +67,11 @@ using U8 = V<uint8_t>;
|
||||
// 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__) && defined(__GNUC__)
|
||||
#pragma GCC diagnostic ignored "-Wpsabi"
|
||||
#if !defined(__has_warning)
|
||||
#pragma GCC diagnostic ignored "-Wpsabi"
|
||||
#elif __has_warning("-Wpsabi")
|
||||
#pragma GCC diagnostic ignored "-Wpsabi"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__clang__)
|
||||
|
2
third_party/skcms/version.sha1
vendored
2
third_party/skcms/version.sha1
vendored
@ -1 +1 @@
|
||||
bae5e281e80fcc5d4198b764ba1130a49746db0f
|
||||
ba17399285ced3c1217dc9371c6103382f1ffd0d
|
||||
|
Loading…
Reference in New Issue
Block a user