Roll skia/third_party/skcms 0da672fc2c69..668026c511f3 (1 commits)

https://skia.googlesource.com/skcms.git/+log/0da672fc2c69..668026c511f3

2019-04-15 mtklein@google.com remove need for -Wno-narrowing


The AutoRoll server is located here: https://autoroll.skia.org/r/skcms-skia-autoroll

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

If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.



CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel
TBR=herb@google.com

Change-Id: I6d0f5de8d878ec5319ca3986599e62d9f5d17aef
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/208150
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 2019-04-15 15:59:02 +00:00 committed by Skia Commit-Bot
parent 930c29511f
commit 662d67133a
2 changed files with 7 additions and 8 deletions

View File

@ -107,13 +107,12 @@ SI D cast(const S& v) {
return (D)v;
#elif defined(__clang__)
return __builtin_convertvector(v, D);
#elif N == 4
return D{v[0],v[1],v[2],v[3]};
#elif N == 8
return D{v[0],v[1],v[2],v[3], v[4],v[5],v[6],v[7]};
#elif N == 16
return D{v[0],v[1],v[ 2],v[ 3], v[ 4],v[ 5],v[ 6],v[ 7],
v[8],v[9],v[10],v[11], v[12],v[13],v[14],v[15]};
#else
D d;
for (int i = 0; i < N; i++) {
d[i] = v[i];
}
return d;
#endif
}

View File

@ -1 +1 @@
0da672fc2c69d3d7fd4c524c2d873ca725586d97
668026c511f3d4be9447b0ae28ea7a73b5899262