This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
RE: cruft patrol
H.J.
>
> > Did you run "make check" on Intel Core i7? I got
>
> I don't have such a machine. My changes should not have materially
> changed
> any of the code or data. Can you tell how they did?
You missed a comma:
diff --git a/sysdeps/x86_64/multiarch/varshift.c b/sysdeps/x86_64/multiarch/varshift.c
index 1050613..46d72fe 100644
--- a/sysdeps/x86_64/multiarch/varshift.c
+++ b/sysdeps/x86_64/multiarch/varshift.c
@@ -21,6 +21,6 @@
const int8_t ___m128i_shift_right[31] attribute_hidden =
{
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
};
H.J.